/* Smooth theme transitions */
html {
    transition: background-color 0.2s ease, color 0.2s ease;
}

/* Dark mode scrollbar */
.dark ::-webkit-scrollbar {
    width: 6px;
}
.dark ::-webkit-scrollbar-track {
    background: #0A0A0B;
}
.dark ::-webkit-scrollbar-thumb {
    background: #2A2A2D;
    border-radius: 3px;
}
.dark ::-webkit-scrollbar-thumb:hover {
    background: #3A3A3F;
}

/* Light mode scrollbar */
::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    background: #F4F4F5;
}
::-webkit-scrollbar-thumb {
    background: #D1D1D6;
    border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
    background: #A1A1AA;
}
