<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* 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;
}
</pre></body></html>