/* ============================================================
   Designové tokeny — sdílené frontendem i adminem (skill: design)
   ============================================================ */
:root {
  /* Světlý režim (výchozí) */
  --bg: #ffffff;
  --bg-alt: #f4f6f9;
  --bg-elevated: #ffffff;
  --text: #1a2330;
  --text-muted: #5b6b7c;
  --accent: #0078d4;
  --accent-hover: #106ebe;
  --accent-soft: #e6f2fb;
  --border: #e3e8ee;
  --code-bg: #0f172a;
  --code-text: #e2e8f0;
  --shadow: 0 1px 3px rgb(16 30 54 / .08), 0 4px 14px rgb(16 30 54 / .06);
  --radius: 10px;
  --radius-sm: 6px;

  --success: #107c10;
  --warning: #b54708;
  --error: #c50f1f;

  --font-sans: "Segoe UI", system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
  --font-mono: "Cascadia Code", Consolas, "SF Mono", Menlo, monospace;

  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 24px;
  --space-6: 32px;
  --space-7: 48px;
  --space-8: 64px;
}

[data-theme="dark"] {
  --bg: #0f1722;
  --bg-alt: #16202e;
  --bg-elevated: #1b2736;
  --text: #e6edf5;
  --text-muted: #93a4b8;
  --accent: #4da3e8;
  --accent-hover: #6fb6ee;
  --accent-soft: #15293c;
  --border: #243245;
  --shadow: 0 1px 3px rgb(0 0 0 / .4), 0 4px 14px rgb(0 0 0 / .3);

  --success: #6ccb5f;
  --warning: #f5a623;
  --error: #ff6b6b;
}
