/* Scrollbar Style */

/* width */
::-webkit-scrollbar {
    width: 6px;
}

/* Border radius */
::-webkit-scrollbar-thumb {
    border-radius: 8px;
}

/* Track */
::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 16px;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    padding: 20px;
    font-weight: bold;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #252525;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #151515;
}