/**
 * Design tokens — thème sombre law enforcement
 */
:root {
    /* Couleurs principales */
    --bg-primary: #0a0e17;
    --bg-secondary: #111827;
    --bg-tertiary: #1a2332;
    --bg-card: #151d2b;
    --bg-hover: #1e2a3a;

    /* Accent doré */
    --accent-gold: #c9a84c;
    --accent-gold-light: #e0c068;
    --accent-gold-dark: #a08030;

    /* Accent bleu */
    --accent-blue: #3b82f6;
    --accent-blue-light: #60a5fa;
    --accent-blue-dark: #2563eb;

    /* Statuts */
    --status-open: #3b82f6;
    --status-active: #f59e0b;
    --status-closed: #10b981;
    --status-cold: #6b7280;
    --status-critical: #ef4444;

    /* Texte */
    --text-primary: #e5e7eb;
    --text-secondary: #9ca3af;
    --text-muted: #6b7280;

    /* Bordures */
    --border-color: #1e2a3a;
    --border-light: #2a3a4a;

    /* Typographie */
    --font-main: 'Inter', system-ui, -apple-system, sans-serif;
    --font-mono: 'JetBrains Mono', 'Fira Code', monospace;

    /* Ombres */
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.3);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.4);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.5);
    --shadow-glow: 0 0 20px rgba(201, 168, 76, 0.15);

    /* Rayons */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;

    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-normal: 250ms ease;
    --transition-slow: 400ms ease;

    /* Layout */
    --sidebar-width: 260px;
    --sidebar-collapsed: 70px;
    --topbar-height: 60px;
}
