@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

body { 
    font-family: 'Inter', sans-serif; 
}

/* Custom Scrollbars */
.custom-scrollbar::-webkit-scrollbar { 
    width: 6px; 
    height: 6px; 
}

.custom-scrollbar::-webkit-scrollbar-track { 
    background: #f1f5f9; 
}

.dark .custom-scrollbar::-webkit-scrollbar-track { 
    background: #1e293b; 
}

.custom-scrollbar::-webkit-scrollbar-thumb { 
    background: #cbd5e1; 
    border-radius: 4px; 
}

.dark .custom-scrollbar::-webkit-scrollbar-thumb { 
    background: #475569; 
    border-radius: 4px; 
}