/* 
  Variables - Zyniti Leads 
  Color Palette:
  Mountain Blue: #4968B1
  Cyan: #76D1F7
  Deep Navy: #0B1019
*/

:root {
    /* Primary Colors */
    --clr-primary: #4968B1;
    --clr-primary-light: #5d7bc9;
    --clr-primary-dark: #375394;
    
    /* Secondary Colors */
    --clr-secondary: #76D1F7;
    --clr-secondary-light: #96ddfb;
    
    /* Dark Theme / Navy */
    --clr-navy: #0B1019;
    --clr-navy-light: #161c28;
    
    /* Backgrounds & Surfaces */
    --bg-main: #f4f7fe;
    --bg-surface: #ffffff;
    --bg-hover: #f8fafc;
    
    /* Text Colors */
    --txt-main: #1e293b;
    --txt-muted: #64748b;
    --txt-light: #f8fafc;
    
    /* Status Colors */
    --status-success: #10b981;
    --status-success-bg: #d1fae5;
    --status-warning: #f59e0b;
    --status-warning-bg: #fef3c7;
    --status-danger: #ef4444;
    --status-danger-bg: #fee2e2;
    --status-info: #3b82f6;
    --status-info-bg: #dbeafe;
    --status-new: #8b5cf6;
    --status-new-bg: #ede9fe;
    
    /* Borders & Shadows */
    --border-light: #e2e8f0;
    --border-focus: #4968B1;
    
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --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 10px 25px -5px rgba(73, 104, 177, 0.15), 0 8px 10px -6px rgba(73, 104, 177, 0.1);
    
    /* Layout */
    --sidebar-width: 250px;
    --sidebar-collapsed-width: 80px;
    --header-height: 70px;
    
    /* Typography */
    --font-family: 'Inter', sans-serif;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    
    /* Border Radius */
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-pill: 9999px;
}

/* Dark Mode Variables (Optional, can be toggled via JS adding .dark-theme to body) */
body.dark-theme {
    --bg-main: #0B1019;
    --bg-surface: #121826;
    --bg-hover: #1c2333;
    
    --txt-main: #f8fafc;
    --txt-muted: #94a3b8;
    
    --border-light: #1f2937;
    
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.5);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.5);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.5);
}
