:root {
    /* Brand Colors */
    --electric-green: #059669; /* Professional Emerald Green */
    --electric-green-glow: rgba(5, 150, 105, 0.2);
    --electric-blue: #2563eb;
    --electric-blue-glow: rgba(37, 99, 235, 0.2);
    
    /* Backgrounds - Light Theme */
    --bg-dark: #f0fdf4; /* Very light green tinted background */
    --bg-panel: #ffffff;
    --bg-card: #ffffff;
    --bg-card-hover: #f8fafc;
    --sidebar-bg: #ffffff;
    
    /* Text Colors - Light Theme */
    --text-primary: #0f172a;
    --text-secondary: #475569;
    --text-muted: #94a3b8;
    
    /* Borders */
    --border-color: #e2e8f0;
    --border-light: #f1f5f9;
    
    /* Status Colors */
    --status-pending: #d97706;
    --status-in-progress: #2563eb;
    --status-completed: #059669;
    --status-error: #dc2626;
    
    /* Dimensions */
    --sidebar-width: 280px;
    
    /* Transitions & Shadows */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-medium: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 15px rgba(0, 0, 0, 0.05);
    --shadow-glow: 0 10px 25px rgba(5, 150, 105, 0.15);
}

body {
    background-color: var(--bg-dark);
    color: var(--text-primary);
    font-family: 'Inter', -apple-system, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, .nav-brand {
    font-family: 'Outfit', sans-serif;
    color: #064e3b; /* Dark green for headings */
}

* {
    box-sizing: border-box;
}

a {
    color: var(--electric-green);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: #047857;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}
