/* a truly always visible scrollbar is only possible on webkit --
on firefox we are only able to sync the styling
but cannot force the scrollbar to appear for users */

/* mozilla styles */
.always-visible-scrollbar {
    scrollbar-color: #757575 transparent;
    scrollbar-width: thin;
}

/* webkit styles */
.always-visible-scrollbar::-webkit-scrollbar {
    width: 14px;
}

.always-visible-scrollbar::-webkit-scrollbar-thumb {
    background-clip: content-box;
    border: 5px solid transparent;
    border-radius: 10px;
    box-shadow: #757575 inset 0 0 0 10px;
}

.always-visible-scrollbar::-webkit-scrollbar-corner {
    background-color: transparent;
}

.always-visible-scrollbar::-webkit-scrollbar-button {
    width: 0;
    height: 0;
    display: none;
}
