/* ==============================================
   WAI ADMIN - CSS Variables
   Theme Colors: #2680AD (Primary) & #FF593C (Accent)
   ============================================== */

:root {
    /* Primary Colors */
    --primary: #2680AD;
    --primary-dark: #1e6689;
    --primary-light: #4ca3d3;
    --primary-lighter: #6bb5db;
    --primary-darker: #1a5a7a;

    /* Accent Colors */
    --accent: #FF593C;
    --accent-dark: #e54a31;
    --accent-light: #ff7965;
    --accent-lighter: #ff8f7e;
    --accent-darker: #d13d26;

    /* Neutral Colors */
    --white: #ffffff;
    --black: #000000;

    /* Gray Scale */
    --gray-50: #f8f9fa;
    --gray-100: #f1f3f4;
    --gray-200: #e9ecef;
    --gray-300: #dee2e6;
    --gray-400: #ced4da;
    --gray-500: #6c757d;
    --gray-600: #495057;
    --gray-700: #343a40;
    --gray-800: #212529;
    --gray-900: #0d1117;

    /* Status Colors */
    --success: #28a745;
    --success-light: #40c057;
    --success-dark: #1e7e34;

    --warning: #ffc107;
    --warning-light: #ffcd39;
    --warning-dark: #e0a800;

    --danger: #dc3545;
    --danger-light: #e74c3c;
    --danger-dark: #c82333;

    --info: #17a2b8;
    --info-light: #3fc3d5;
    --info-dark: #138496;

    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;

    /* Border Radius */
    --radius-xs: 4px;
    --radius-sm: 6px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-2xl: 20px;
    --radius-3xl: 24px;
    --radius-full: 50%;

    /* Shadows */
    --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07);
    --shadow-lg: 0 8px 25px rgba(0, 0, 0, 0.08);
    --shadow-xl: 0 12px 35px rgba(0, 0, 0, 0.12);
    --shadow-2xl: 0 25px 50px rgba(0, 0, 0, 0.15);

    /* Typography */
    --font-family-base: 'Cairo', 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    --font-family-heading: 'Cairo', 'Segoe UI', 'Roboto', sans-serif;

    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 1.875rem;
    --font-size-4xl: 2.25rem;

    --font-weight-light: 300;
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;

    --line-height-tight: 1.25;
    --line-height-normal: 1.5;
    --line-height-relaxed: 1.75;

    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;

    /* Z-Index */
    --z-dropdown: 1000;
    --z-sticky: 1020;
    --z-fixed: 1030;
    --z-modal-backdrop: 1040;
    --z-modal: 1050;
    --z-tooltip: 1070;

    /* Breakpoints (for reference in media queries) */
    --breakpoint-xs: 0;
    --breakpoint-sm: 576px;
    --breakpoint-md: 768px;
    --breakpoint-lg: 992px;
    --breakpoint-xl: 1200px;
    --breakpoint-xxl: 1400px;
}

/* Dark mode variables (for future use) */
@media (prefers-color-scheme: dark) {
    :root {
        --bg-primary: var(--gray-900);
        --bg-secondary: var(--gray-800);
        --text-primary: var(--gray-100);
        --text-secondary: var(--gray-400);
    }
}