/* ==================================================
   BusinessOS Global Theme - CSS Variables
   ================================================== */

:root {
    /* Primary Color Palette */
    --bos-primary: #0074E8;
    --bos-primary-rgb: 0, 116, 232;
    --bos-primary-hover: #0074E8;
    --bos-primary-light: #e6f2ff;
    --bos-primary-dark: #0074E8;

    /* Secondary Color Palette */
    --bos-secondary: #64748b;
    --bos-secondary-rgb: 100, 116, 139;
    --bos-secondary-hover: #64748b;
    --bos-secondary-light: #f1f5f9;
    --bos-secondary-dark: #334155;

    /* Accent Colors */
    --bos-accent: #8b5cf6;
    --bos-accent-rgb: 139, 92, 246;
    --bos-accent-hover: #7c3aed;

    /* Status Colors */
    --bos-success: #22c55e;
    --bos-success-rgb: 34, 197, 94;
    --bos-success-light: #dcfce7;

    --bos-danger: #ef4444;
    --bos-danger-rgb: 239, 68, 68;
    --bos-danger-light: #fee2e2;

    --bos-warning: #f59e0b;
    --bos-warning-rgb: 245, 158, 11;
    --bos-warning-light: #fef3c7;

    --bos-info: #06b6d4;
    --bos-info-rgb: 6, 182, 212;

    /* Gray Scale */
    --bos-gray-50: #f8fafc;
    --bos-gray-100: #f1f5f9;
    --bos-gray-200: #e2e8f0;
    --bos-gray-300: #cbd5e1;
    --bos-gray-400: #94a3b8;
    --bos-gray-500: #64748b;
    --bos-gray-600: #475569;
    --bos-gray-700: #334155;
    --bos-gray-800: #1e293b;
    --bos-gray-900: #0f172a;

    /* Background Colors */
    --bos-bg-primary: #ffffff;
    --bos-bg-secondary: #f8fafc;
    --bos-bg-dark: #0f172a;

    /* Text Colors */
    --bos-text-primary: #1e293b;
    --bos-text-secondary: #64748b;
    --bos-text-light: #94a3b8;
    --bos-text-white: #ffffff;

    /* Border Colors */
    --bos-border-color: #e2e8f0;
    --bos-border-light: #f1f5f9;

    /* Border Radius */
    --bos-border-radius-sm: 0.375rem;
    --bos-border-radius: 0.5rem;
    --bos-border-radius-lg: 0.75rem;
    --bos-border-radius-xl: 1rem;
    --bos-border-radius-pill: 50rem;

    /* Spacing */
    --bos-spacing-xs: 0.25rem;
    --bos-spacing-sm: 0.5rem;
    --bos-spacing-md: 1rem;
    --bos-spacing-lg: 1.5rem;
    --bos-spacing-xl: 2rem;
    --bos-spacing-xxl: 3rem;

    /* Typography */
    --bos-font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    --bos-font-size-xs: 0.75rem;
    --bos-font-size-sm: 0.875rem;
    --bos-font-size-md: 1rem;
    --bos-font-size-lg: 1.125rem;
    --bos-font-size-xl: 1.25rem;
    --bos-font-size-xxl: 1.5rem;
    --bos-font-weight-normal: 400;
    --bos-font-weight-medium: 500;
    --bos-font-weight-semibold: 600;
    --bos-font-weight-bold: 700;

    /* Shadows */
    --bos-shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --bos-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
    --bos-shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
    --bos-shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    --bos-shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);

    /* Transitions */
    --bos-transition-fast: 150ms ease-in-out;
    --bos-transition: 250ms ease-in-out;
    --bos-transition-slow: 350ms ease-in-out;

    /* Sidebar Colors */
    --bos-sidebar-bg: #001D4F;
    --bos-sidebar-item-bg: #00439C;
    --bos-sidebar-item-active-bar: #52B4FF;

    /* Header Height */
    --bos-header-height: 60px;

    /* Sidebar Width */
    --bos-sidebar-width: 200px;
    --bos-sidebar-width-collapsed: 72px;

    /* Z-index */
    --bos-z-header: 1000;
    --bos-z-sidebar: 900;
    --bos-z-dropdown: 1050;
}