/**
 * OneView Dashboard - Global CSS Variables
 * ========================================
 */

:root {
    /* ===== Brand Colors ===== */
    --ov-primary-gray: #4B5563;
    --ov-light-gray: #F3F4F6;
    --ov-dark-gray: #1F2937;
    --ov-medium-gray: #6B7280;
    --ov-accent-gray: #9CA3AF;
    --ov-border-gray: #D1D5DB;
    --ov-text-gray: #374151;
    
    /* ===== Status Colors ===== */
    --ov-success: #10B981;
    --ov-warning: #F59E0B;
    --ov-danger: #EF4444;
    --ov-info: #3B82F6;
    
    /* ===== Neutral Colors ===== */
    --ov-white: #FFFFFF;
    --ov-black: #000000;
    
    /* ===== Typography ===== */
    --ov-font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --ov-font-heading: 'Poppins', var(--ov-font-primary);
    --ov-font-mono: 'JetBrains Mono', 'Fira Code', monospace;
    
    /* ===== Font Sizes ===== */
    --ov-text-xs: 0.75rem;
    --ov-text-sm: 0.875rem;
    --ov-text-base: 1rem;
    --ov-text-lg: 1.125rem;
    --ov-text-xl: 1.25rem;
    --ov-text-2xl: 1.5rem;
    --ov-text-3xl: 1.875rem;
    
    /* ===== Spacing ===== */
    --ov-spacing-xs: 0.25rem;
    --ov-spacing-sm: 0.5rem;
    --ov-spacing-md: 0.75rem;
    --ov-spacing-lg: 1rem;
    --ov-spacing-xl: 1.5rem;
    --ov-spacing-2xl: 2rem;
    --ov-spacing-3xl: 3rem;
    
    /* ===== Border Radius ===== */
    --ov-radius-sm: 4px;
    --ov-radius-md: 8px;
    --ov-radius-lg: 12px;
    --ov-radius-xl: 16px;
    --ov-radius-full: 9999px;
    
    /* ===== Shadows ===== */
    --ov-shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --ov-shadow-md: 0 2px 8px rgba(0, 0, 0, 0.05);
    --ov-shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.1);
    --ov-shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.15);
    
    /* ===== Transitions ===== */
    --ov-transition-fast: 0.15s ease-in-out;
    --ov-transition-normal: 0.3s ease-in-out;
    --ov-transition-slow: 0.5s ease-in-out;
    
    /* ===== Z-Index Scale ===== */
    --ov-z-dropdown: 100;
    --ov-z-sticky: 200;
    --ov-z-modal: 300;
    --ov-z-tooltip: 400;
    --ov-z-toast: 500;
}
