/* Shared theme for app listings and HTML apps (light/dark via color-scheme).
   Extracted from AutoSNCF index.html color palette. */

:root {
  --bg: #ffffff;
  --bg-muted: #f6f7f9;
  --text: #111418;
  --text-muted: #545b66;
  --card: #ffffff;
  --border: #e5e7eb;
  --accent: #2563eb;
  --accent-weak: #dbeafe;
  --today-bg: #eef6ff;
  --today-border: #93c5fd;
  --error: #b91c1c;
  color-scheme: light dark;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #0b0f14;
    --bg-muted: #0f1520;
    --text: #e5e7eb;
    --text-muted: #9aa4b2;
    --card: #0f1520;
    --border: #1f2937;
    --accent: #60a5fa;
    --accent-weak: #0b1b34;
    --today-bg: #0b1b34;
    --today-border: #1e3a8a;
  }
}

/* Base helpers (optional) */
html, body { background: var(--bg); color: var(--text); }
a { color: var(--accent); }

