:root {
  --color-bg: #f6f7fb;
  --color-panel: #ffffff;
  --color-primary: #4f46e5;
  --color-muted: #6b7280;
  --sidebar-width: 220px;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--color-bg);
}
@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
}
h1{
  font-size: 26px;
}