/* ========================================
   CSS VARIABLES - All Generics Variables
   ======================================== */
:root {
    /* Neutral Colors */
    --color-gray-50: #f8fafc;
    --color-gray-100: #f1f5f9;
    --color-gray-200: #e2e8f0;
    --color-gray-300: #cbd5e1;
    --color-gray-400: #94a3b8;
    --color-gray-500: #64748b;
    --color-gray-600: #475569;
    --color-gray-700: #334155;
    --color-gray-800: #1e293b;
    --color-gray-900: #0f172a;

    /* Highlight colours */
    --color-coral: #ff6b6b;
    --color-amber: #f59e0b;
    --color-emerald: #10b981;
    --color-violet: #8b5cf6;
    
    /* Message Colors */
    --color-success-bg: #d1fae5;
    --color-success-text: #065f46;
    --color-success-border: #a7f3d0;
    
    --color-error-bg: #fee2e2;
    --color-error-text: #991b1b;
    --color-error-border: #fecaca;
    
    --color-warning-bg: #fef3c7;
    --color-warning-text: #92400e;
    --color-warning-border: #fde68a;
    
    --color-info-bg: #dbeafe;
    --color-info-text: #1e40af;
    --color-info-border: #bfdbfe;
    
    /* Typography */
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-mono: 'JetBrains Mono', 'Courier New', monospace;
    
    /* Spacing */
    --spacing-xs: 8px;
    --spacing-sm: 12px;
    --spacing-md: 16px;
    --spacing-lg: 24px;
    --spacing-xl: 32px;
    
    /* Border Radius */
    --radius-sm: 6px;     /* Small rounding - subtle */
    --radius-md: 8px;     /* Medium rounding - standard buttons */
    --radius-lg: 12px;    /* Large rounding - cards, modals */
    --radius-xl: 16px;    /* Extra large - pronounced rounding */
    --radius-full: 9999px; /* Fully rounded - pills, circles */
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    
    /* Transitions */
    --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 250ms cubic-bezier(0.4, 0, 0.2, 1);
}