/* public/assets/css/themes/light.css */

[data-theme="light"] {
    /* Background colors */
    --bg-primary: #ffffff;
    --bg-secondary: #f8fafc;
    --bg-tertiary: #f1f5f9;
    
    /* Text colors */
    --text-primary: #0f172a;
    --text-secondary: #475569;
    --text-tertiary: #94a3b8;
    
    /* Border colors */
    --border-color: #e2e8f0;
    --border-color-hover: #cbd5e1;
    
    /* Primary colors */
    --primary-color: #3b82f6;
    --primary-color-hover: #2563eb;
    --primary-color-alpha: rgba(59, 130, 246, 0.1);
    
    /* Secondary colors */
    --secondary-color: #8b5cf6;
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --danger-color: #ef4444;
    --info-color: #06b6d4;
    
    /* Component colors */
    --card-bg: #ffffff;
    --input-bg: #ffffff;
    --btn-text: #ffffff;
    
    /* Shadows */
    --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-hover: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    
    /* Spacing scale */
    --spacing-xs: 0.25rem;   /* 4px */
    --spacing-sm: 0.5rem;    /* 8px */
    --spacing-md: 1rem;      /* 16px */
    --spacing-lg: 1.5rem;    /* 24px */
    --spacing-xl: 2rem;      /* 32px */
    --spacing-2xl: 3rem;     /* 48px */
    
    /* Z-index scale (for stacking context management) */
    --z-base: 1;
    --z-dropdown: 1000;
    --z-sticky: 100;
    --z-modal: 2000;
    --z-modal-overlay: 1999;
    --z-modal-content: 2001;
    --z-tooltip: 3000;
    --z-max: 9999;
    
    /* Font sizes */
    --font-size-xs: 0.65rem;    /* 10.4px */
    --font-size-sm: 0.75rem;    /* 12px */
    --font-size-base: 0.875rem; /* 14px */
    --font-size-md: 1rem;       /* 16px */
    --font-size-lg: 1.125rem;    /* 18px */
    --font-size-xl: 1.25rem;    /* 20px */
    --font-size-2xl: 1.5rem;    /* 24px */
    
    /* Border radius scale */
    --radius-sm: 4px;
    --radius-md: 6px;
    --radius-base: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-full: 9999px;
    
    /* Other properties */
    --border-radius: var(--radius-base);
    --transition: all 0.3s ease;
    --transition-fast: all 0.2s ease;
    --transition-slow: all 0.5s ease;
    
    /* Header */
    --header-bg: #ffffff;
    --header-border: #e2e8f0;
    --header-z-index: var(--z-sticky);
}





