/* Einsatztauglich (N-2): dunkel als Standard (Nachteinsätze), hoher Kontrast,
   große Touchziele. Markenpalette nach Design-Mockups: Nachtblau + Signal-Orange.
   Helles Schema folgt mit dem Theme-Umschalter. */
:root {
  --color-bg: #0c1626;          /* Nachtblau */
  --color-surface: #1b2940;     /* Panel */
  --color-border: #2c3e5c;      /* Linie */
  --color-text: #e8edf4;        /* Schnee */
  --color-text-muted: #9fb0c7;  /* Grau */
  --color-accent: #ff7a1a;      /* Signal-Orange */
  --color-on-accent: #1a1206;   /* dunkler Text auf dem Akzent (Kontrast auf Orange) */
  --color-danger: #e85d5d;
  --color-ok: #3dba6f;
  --color-hover: #243650;       /* Panel-hell */
  --radius: 10px;
}

html, body { height: 100% }

body {
  margin: 0;
  background: var(--color-bg);
  color: var(--color-text);
  font-family: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  -webkit-font-smoothing: antialiased;
}
