/* Changes the scrollbar thumb + track color */
* {
    scrollbar-color: rgba(255, 0, 79, 0.7) #3d3d3d;
    /* thumb color | track color */
    scrollbar-width: thin;
    /* auto | thin | none */
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 6px;
    /* Width of the scrollbar */
    height: 12px;
    /* Height of the scrollbar for horizontal scrollbars */
}

::-webkit-scrollbar-track {
    background: #3d3d3d;
    /* Background of the scrollbar track */
}

::-webkit-scrollbar-thumb {
    background: #ff004f;
    /* Color of the draggable part of the scrollbar */
    border-radius: 10px;
    /* Rounded corners for the scrollbar thumb */
}

::-webkit-scrollbar-thumb:hover {
    background: #ff00518a;
    /* Color when hovering over the scrollbar thumb */
}