/* SCROLL BAR */

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

/* Track */
::-webkit-scrollbar-track {
    /*box-shadow: inset 0 0 5px #1f2143; */
    background-color: #1f2143;
    border-radius: 10px;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #d15941; 
    border-radius: 10px;
}

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