/*
Tujuan: Menyimpan design tokens global untuk seluruh UI NOPPAW.
Caller: Semua stylesheet runtime NOPPAW.
Dependensi: DESIGN.md, base.css, layout.css, components.css, tool-workspace.css.
Main Functions: Mendefinisikan warna, spacing, radius, container, dan font variables.
Side Effects: Mempengaruhi seluruh tampilan route yang memakai CSS global.
*/

:root {
  --color-bg: #ffffff;
  --color-surface: #f7f9fc;
  --color-surface-strong: #eef3f8;
  --color-text: #172033;
  --color-text-muted: #5d687a;
  --color-border: #dbe2ea;
  --color-primary: #2563eb;
  --color-primary-hover: #1d4ed8;
  --color-primary-soft: #eff6ff;
  --color-success: #15803d;
  --color-success-soft: #f0fdf4;
  --color-warning: #a16207;
  --color-warning-soft: #fffbeb;
  --color-danger: #b91c1c;
  --color-danger-soft: #fef2f2;
  --color-focus: #1d4ed8;
  --shadow-sm: 0 1px 2px rgb(15 23 42 / 0.06);
  --shadow-md: 0 8px 24px rgb(15 23 42 / 0.08);
  --font-sans: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --container-wide: 1200px;
  --container-default: 1080px;
  --container-content: 760px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 20px;
  --space-6: 24px;
  --space-8: 32px;
  --space-10: 40px;
  --space-12: 48px;
  --space-16: 64px;
  --space-20: 80px;
}
