:root {
    /* Modern Color Palette - Soft & Professional */
    --primary-color: #667eea;
    --primary-dark: #5a67d8;
    --primary-light: #e6f3ff;
    --secondary-color: #718096;
    --secondary-dark: #4a5568;
    --secondary-light: #f7fafc;
    --accent-color: #ed8936;
    --accent-dark: #dd6b20;
    --success-color: #48bb78;
    --success-light: #f0fff4;
    --danger-color: #f56565;
    --danger-light: #fed7d7;
    --warning-color: #ed8936;
    --warning-light: #fef5e7;
    --info-color: #4299e1;
    --info-light: #ebf8ff;
    
    /* Background Colors */
    --bg-primary: #ffffff;
    --bg-secondary: #f8fafc;
    --bg-tertiary: #edf2f7;
    --bg-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    
    /* Text Colors */
    --text-primary: #2d3748;
    --text-secondary: #718096;
    --text-muted: #a0aec0;
    --text-light: #ffffff;
    
    /* Border & Shadow */
    --border-color: #e2e8f0;
    --border-light: #f1f5f9;
    --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    --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-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    
    /* Status colors - Modern & Harmonious */
    --suggested-bg: #fef5e7;
    --suggested-color: #f46d2a;
    --applied-bg: #e6f3ff;
    --applied-color: #2b6cb0;
    --responded-bg: #ebf8ff;
    --responded-color: #2c5282;
    --interviewed-bg: #f0fff4;
    --interviewed-color: #276749;
    --hired-bg: #f0fff4;
    --hired-color: #22543d;
    --declined-bg: #fed7d7;
    --declined-color: #c53030;
    --aborted-bg: #f7fafc;
    --aborted-color: #4a5568;
    
    /* Spacing - Consistent Scale */
    --spacing-xs: 4px;
    --spacing-sm: 8px;
    --spacing-md: 16px;
    --spacing-lg: 24px;
    --spacing-xl: 32px;
    --spacing-2xl: 48px;
    --spacing-3xl: 64px;
    
    /* Border radius - Modern & Consistent */
    --radius-sm: 6px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-full: 9999px;
    
    /* Typography */
    --font-family-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 1.875rem;
    --font-size-4xl: 2.25rem;
    
    /* Line heights */
    --leading-tight: 1.25;
    --leading-normal: 1.5;
    --leading-relaxed: 1.625;
    
    /* Font weights */
    --font-normal: 400;
    --font-medium: 500;
    --font-semibold: 600;
    --font-bold: 700;
    
    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-normal: 250ms ease;
    --transition-slow: 350ms ease;
    
    /* Legacy support */
    --border-radius: var(--radius-md);
    --box-shadow: var(--shadow-md);
}