/* Variables CSS centralisées - NsandaxPOS UI Refonte */

:root {
    /* Couleurs primaires */
    --primary-color: #007bff;
    --secondary-color: #6c757d;
    --success-color: #28a745;
    --warning-color: #ffc107;
    --danger-color: #dc3545;
    --info-color: #17a2b8;
    
    /* Sidebar */
    --sidebar-bg: #2c5282;
    --sidebar-hover: #3d6ca7;
    --sidebar-active-border: #ffc107;
    --sidebar-text: #ffffff;
    --sidebar-width: 260px;
    --sidebar-collapsed-width: 60px;
    
    /* Backgrounds */
    --light-bg: #f8f9fa;
    --white: #ffffff;
    --body-bg: #f8f9fa;
    
    /* Typographie */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-size-base: 14px;
    --font-size-lg: 16px;
    --font-size-xl: 28px;
    --font-size-sm: 12px;
    --line-height: 1.5;
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-bold: 600;
    
    /* Espacements */
    --spacing-xs: 5px;
    --spacing-sm: 10px;
    --spacing-md: 15px;
    --spacing-lg: 20px;
    --spacing-xl: 30px;
    
    /* Bordures */
    --border-radius: 12px;
    --border-radius-sm: 8px;
    --border-radius-lg: 20px;
    --border-color: #dee2e6;
    
    /* Ombres */
    --card-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --card-shadow-hover: 0 8px 25px rgba(0, 0, 0, 0.15);
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.08);
    
    /* Topbar */
    --topbar-height: 60px;
    --topbar-bg-manager: #ffffff;
    --topbar-bg-other: #007bff;
    --topbar-text-manager: #212529;
    --topbar-text-other: #ffffff;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    
    /* Z-index */
    --z-sidebar: 1030;
    --z-topbar: 1040;
    --z-dropdown: 1050;
    --z-modal: 1060;
}
