/* Global DaylioX theme reset and typography */
:root {
  --bg-color: #f8fafc;
  --text-color: #1e293b;
  --muted-text-color: #475569;
  --brand-color: #6366f1;
  --brand-dark: #4f46e5;
  --brand-light: #818cf8;
  --surface-color: #ffffff;
  --surface-alt-color: #f8fafc;
  --border-color: #e2e8f0;
  --sidebar-bg: #ffffff;
  --sidebar-border: #e2e8f0;
}

.dark {
  --bg-color: #020617;
  --text-color: #f1f5f9;
  --muted-text-color: #cbd5e1;
  --brand-color: #818cf8;
  --brand-dark: #6366f1;
  --brand-light: #a5b4fc;
  --surface-color: #1e293b;
  --surface-alt-color: #0f172a;
  --border-color: #334155;
  --sidebar-bg: #0f172a;
  --sidebar-border: #334155;
}

body {
  background-color: var(--bg-color);
  color: var(--text-color);
  font-family: 'Inter', 'Plus Jakarta Sans', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
}

a {
  color: var(--brand-color);
}
