/* Custom Scrollbar Styles */

/* Webkit browsers (Chrome, Safari, Edge) */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: transparent;
    box-shadow: none;
}

::-webkit-scrollbar-thumb {
    background: rgba(80, 80, 80, 0.8);
    border-radius: 6px;
    box-shadow: none;
    border: none;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(60, 60, 60, 1);
}

/* Firefox */
html {
    scrollbar-width: thin;
    scrollbar-color: rgba(80, 80, 80, 0.8) transparent;
}

/* Body background color */
body {
    background-color: #EAEAE5;
}
