/* Custom scrollbar for dark theme */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: #1e293b; /* slate-800 */
}
::-webkit-scrollbar-thumb {
    background: #334155; /* slate-700 */
    border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
    background: #475569; /* slate-600 */
}
body {
    font-family: 'Inter', sans-serif;
}
