/**
 * theme-bylogix.css
 * =====================================================================
 * Palette ed estetica estratte dal mockup di riferimento fornito
 * ("EV App Home.html", variante 1a "Bylogix — engineering-grade"):
 * sfondo chiaro, card bianche, rosso acceso come accento, monospace
 * per le etichette tecniche/uppercase, Poppins per i numeri grandi,
 * DM Sans per il testo. Valori letti via getComputedStyle sul mockup
 * reale, non ricostruiti a occhio.
 *
 * Se un giorno arrivano linee guida di brand Bylogix diverse da queste,
 * sostituisci SOLO i valori qui sotto — nessun altro file va toccato.
 */
:root[data-theme="bylogix"] {
  --bg: #f6f7f8;
  --bg-elevated: #ffffff;
  --surface: #ffffff;
  --surface-2: #eceef0;
  --border: #e2e4e7;

  --text: #16181b;
  --text-dim: #6b6f75;

  --accent: #ef3340;       /* rosso "engineering-grade" del mockup */
  --accent-2: #15723f;     /* verde di stato (es. "Parcheggiata") */
  --accent-contrast: #ffffff;

  --danger: #d92438;
  --warning: #e8a33d;
  --success: #15723f;
  --success-bg: #e7f6ee;

  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 12px;

  --shadow-card: 0 1px 2px rgba(16, 18, 21, 0.04), 0 8px 20px rgba(16, 18, 21, 0.05);
  --shadow-elevated: 0 24px 60px rgba(16, 18, 21, 0.18);

  --font-display: "Poppins", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-body: "DM Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
}
