@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

:root { 
    --bg: #f3f4f6;
    --sidebar: #ffffff;
    --card: #ffffff;
    --border: #e5e7eb;
    --input: #f9fafb;
    --hover: #f3f4f6;
    --text: #1f2937;
    --muted: #6b7280;
}

.dark { 
    --bg: #0f172a;      
    --sidebar: #1e293b; 
    --card: #1e293b;
    --border: #334155;  
    --input: #0f172a;
    --hover: #334155;
    --text: #f8fafc;
    --muted: #94a3b8;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg);
    color: var(--text);
    transition: background-color 0.3s, color 0.3s;
}

/* Scrollbar Customization */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: #475569; border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: #64748b; }

.active-nav {
    background-color: #3b82f6; 
    color: white !important;
    box-shadow: 0 4px 14px 0 rgba(59, 130, 246, 0.39);
}

input[type="checkbox"], input[type="radio"] { accent-color: #10b981; }
input[type="color"] { -webkit-appearance: none; border: none; padding: 0; }
input[type="color"]::-webkit-color-swatch-wrapper { padding: 0; }
input[type="color"]::-webkit-color-swatch { border: none; border-radius: 4px; }