/* Base Styles - Scrollbar, Smooth Scroll, etc. */

/* Smooth scroll */
html {
    scroll-behavior: smooth;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #0b0d0f;
}

::-webkit-scrollbar-thumb {
    background: #1a1d21;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #c5f900;
}
