/* Base Styles */
html {
    scroll-behavior: smooth;
}

/* Custom Scrollbar - Gold Theme */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

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

::-webkit-scrollbar-thumb {
    background: #b8860b;
    border-radius: 4px;
}

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

/* Fix input autocomplete background for Dark Gold Theme */
input:-webkit-autofill,
input:-webkit-autofill:hover, 
input:-webkit-autofill:focus, 
input:-webkit-autofill:active{
    -webkit-box-shadow: 0 0 0 30px #0b0b0e inset !important;
    -webkit-text-fill-color: white !important;
    transition: background-color 5000s ease-in-out 0s;
}

/* Hide scrollbar for tabs */
nav::-webkit-scrollbar {
    display: none;
}
nav {
    -ms-overflow-style: none;
    scrollbar-width: none;
}
