/*
  Genei — 2 themes: Day (light, default) + Night (dark)
  Applied via: <html data-theme="day"> or <html data-theme="night">
  Default (no attribute or "day") = Day theme
*/

/* ── Day — B2B Service palette (matches Order Follow-Up mockup) ──────────── */
:root,
[data-theme="day"] {
  --bg:          #F8FAFC;
  --surface:     #FFFFFF;
  --surface2:    #F1F5F9;
  --border:      #E2E8F0;
  --accent:      #0369A1;
  --accent-dim:  #E0F2FE;
  --text:        #020617;
  --muted:       #64748B;
  --success:     #16A34A;
  --error:       #DC2626;
  --warning:     #D97706;
  --topbar-bg:   #0F172A;
  --scrollbar:   #CBD5E1;
}

/* ── Night — clean slate dark ────────────────────────────────────────────── */
[data-theme="night"] {
  --bg:          #0F172A;
  --surface:     #1E293B;
  --surface2:    #334155;
  --border:      #334155;
  --accent:      #38BDF8;
  --accent-dim:  rgba(56,189,248,.15);
  --text:        #F1F5F9;
  --muted:       #94A3B8;
  --success:     #4ADE80;
  --error:       #F87171;
  --warning:     #FBBF24;
  --topbar-bg:   #0F172A;
  --scrollbar:   #334155;
}
