/** Global styles like background color, etc. **/

body {
    background-color: #f6f7f8;
}

.nav-button-background-active{
    background-color: #29abe2;
}

/* For WebKit-based browsers (e.g., Safari, Chrome) */
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background: #f0f0f0;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #29ABE2, #2A3647);
    border-radius: 5px;
    border: 2px solid #f0f0f0;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #2A3647, #29ABE2);
    box-shadow: 0 0 10px rgba(41, 171, 226, 0.6);
}

/* For Gecko-based browsers (e.g., Firefox) */
html {
    scrollbar-width: auto;
    scrollbar-color: linear-gradient(180deg, #29ABE2, #2A3647) #f0f0f0;
}
