/* public/assets/theme.css
   Общие темы для всего сайта. Используйте CSS-переменные.
*/
:root{
  --bg:#f7f9fc; --card:#ffffff; --text:#222; --muted:#667;
  --border:#e6ebf4; --canvas:#fbfcff; --accent:#0d6efd;
  --danger:#dc3545;
  --stroke:#222; --line:#333; --bus:#233;
  --temp-cool:#dff5e1; --temp-warm:#fff3cd; --temp-hot:#f8d7da;
}
html[data-theme="dark"]{
  --bg:#0f141a; --card:#141a22; --text:#e5e7eb; --muted:#94a3b8;
  --border:#263241; --canvas:#0f1720; --accent:#60a5fa;
  --danger:#f87171;
  --stroke:#e5e7eb; --line:#9aa4b2; --bus:#e5e7eb;
  --temp-cool:#144d2e; --temp-warm:#4d3b00; --temp-hot:#5c1f1f;
}
html[data-theme="slate"]{
  --bg:#101820; --card:#0f1720; --text:#e2e8f0; --muted:#94a3b8;
  --border:#253241; --canvas:#0b1220; --accent:#38bdf8;
  --danger:#fb7185;
  --stroke:#e2e8f0; --line:#94a3b8; --bus:#e2e8f0;
  --temp-cool:#14532d; --temp-warm:#553c00; --temp-hot:#7f1d1d;
}
html[data-theme="contrast"]{
  --bg:#000; --card:#000; --text:#fff; --muted:#ddd;
  --border:#fff; --canvas:#000; --accent:#00e5ff;
  --danger:#ff1744;
  --stroke:#fff; --line:#fff; --bus:#fff;
  --temp-cool:#00ff7f; --temp-warm:#ffd600; --temp-hot:#ff1744;
}
html[data-theme="solarized"]{
  --bg:#fdf6e3; --card:#fffdf4; --text:#073642; --muted:#586e75;
  --border:#eee8d5; --canvas:#fffdf4; --accent:#268bd2;
  --danger:#dc322f;
  --stroke:#073642; --line:#586e75; --bus:#073642;
}
html[data-theme="gruvbox"]{
  --bg:#fbf1c7; --card:#f9f5d7; --text:#3c3836; --muted:#665c54;
  --border:#ebdbb2; --canvas:#f9f5d7; --accent:#458588;
  --danger:#cc241d;
  --stroke:#3c3836; --line:#665c54; --bus:#3c3836;
}

html,body{height:100%}
body{
  margin:0;
  font-family:system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,Arial,sans-serif;
  background:var(--bg);
  color:var(--text);
}
a{color:var(--accent)}
/* Базовые "карточки" (если используются) */
.card, .panel, .box{
  background:var(--card);
  border:1px solid var(--border);
  border-radius:12px;
}
/* Ненавязчивые границы */
hr{border:none;border-top:1px solid var(--border)}
