/* CSS Variables - Design Tokens */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=DM+Sans:wght@400;500;700&family=DM+Serif+Display&display=swap');

:root {
    /* Colors */
    --navy: #0f2044;
    --navy-mid: #1b3362;
    --navy-light: #243a7a;
    --red: #d92b2b;
    --red-dark: #a81e1e;
    --red-light: #ff4444;
    --gold: #e8a020;
    --white: #ffffff;
    --off-white: #f6f7fa;
    --mist: #eef0f6;
    --border: #dde1ee;
    --text: #111827;
    --muted: #5a6480;
    --light-muted: #8a93b0;
    
    /* Status Colors */
    --pending-bg: #fff7e6;
    --pending-color: #b45309;
    --progress-bg: #eff6ff;
    --progress-color: #1d4ed8;
    --resolved-bg: #f0fdf4;
    --resolved-color: #15803d;
    --rejected-bg: #fef2f2;
    --rejected-color: #b91c1c;
    
    /* Spacing */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 3rem;
    --spacing-3xl: 4rem;
    
    /* Border Radius */
    --radius-sm: 0.25rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.15);
    
    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-base: 0.25s ease;
    --transition-slow: 0.4s ease;
}