diff --git a/src/components/Shell.tsx b/src/components/Shell.tsx
index 71971e3..fde3a0c 100644
--- a/src/components/Shell.tsx
+++ b/src/components/Shell.tsx
@@ -183,7 +183,7 @@ export function Shell({ modules }: { modules: ModuleConfig[] }) {
onClick={() => isGroup ? setOpenGroupId((current) => current === m.id ? null : m.id) : switchModule(m.id)}
aria-expanded={isGroup ? isOpen : undefined}
aria-haspopup={isGroup ? 'menu' : undefined}
- className={cn('relative flex min-h-12 w-full flex-col items-center justify-center gap-0.5 rounded-2xl text-[10px] font-black transition-colors', isActive ? 'text-blue-700' : 'text-slate-400')}
+ className={cn('relative flex min-h-12 w-full flex-col items-center justify-center gap-0.5 rounded-2xl text-[10px] font-medium transition-colors', isActive ? 'text-blue-700' : 'text-slate-400')}
>
{isActive ? (
@@ -197,7 +197,7 @@ export function Shell({ modules }: { modules: ModuleConfig[] }) {
const ChildIcon = child.icon;
const childActive = child.id === activeModule;
return (
-