/* AI Recognition Theme CSS Variables */
:root {
    /* Primary Colors */
    --primary-blue: #0d47a1;
    --primary-blue-dark: #0a3d8a;
    --accent-blue: #2196f3;
    --accent-blue-light: #64b5f6;
    
    /* Background Colors */
    --bg-primary: #0a0a0a;
    --bg-secondary: #1a1a1a;
    --bg-tertiary: #2a2a2a;
    --bg-card: rgba(26, 26, 26, 0.8);
    
    /* Text Colors */
    --text-primary: #ffffff;
    --text-secondary: #b0b0b0;
    --text-muted: #888888;
    
    /* Status Colors */
    --status-success: #00e676;
    --status-warning: #ff9800;
    --status-error: #f44336;
    --status-info: #2196f3;
    
    /* Border Colors */
    --border-color: rgba(255, 255, 255, 0.1);
    --border-color-light: rgba(255, 255, 255, 0.05);
    --border-color-dark: rgba(255, 255, 255, 0.2);
    
    /* Shadows */
    --shadow-light: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 8px 25px rgba(0, 0, 0, 0.2);
    --shadow-heavy: 0 25px 50px rgba(0, 0, 0, 0.3);
    --glow-primary: 0 0 20px rgba(13, 71, 161, 0.3);
    
    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.15s ease;
    --transition-slow: all 0.5s ease;
    
    /* Border Radius */
    --border-radius: 12px;
    --border-radius-small: 6px;
    --border-radius-large: 20px;
    
    /* Spacing */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-xxl: 3rem;
    
    /* Typography */
    --font-primary: "davis-sans", sans-serif;
    --font-mono: "SF Mono", "Monaco", "Inconsolata", "Roboto Mono", monospace;
    
    /* Layout */
    --nav-height: 80px;
    --header-height: 60px;
    --sidebar-width: 280px;
    
    /* Z-Index */
    --z-dropdown: 1000;
    --z-sticky: 1020;
    --z-fixed: 1030;
    --z-modal-backdrop: 1040;
    --z-modal: 1050;
    --z-popover: 1060;
    --z-tooltip: 1070;
    
    /* Header Effects */
    --header-glow: rgba(13, 71, 161, 0.3);
    --header-border: rgba(13, 71, 161, 0.2);
}
