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

/* Track */
::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px grey;
    border-radius: 8px;
}

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

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

#searchOverlay::-webkit-scrollbar {
    width: 14px;
}

#searchOverlay::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px grey;
    border-radius: 8px;
}

#searchOverlay::-webkit-scrollbar-thumb {
    background: #ef214a;
    border-radius: 8px;
}

#searchOverlay::-webkit-scrollbar-thumb:hover {
    background: #ef214a;
}
