.scroll-bar {
    background: var(--light-color);
}

::-webkit-scrollbar {
    width: 1em;
}

::-webkit-scrollbar-thumb {
    background-color: var(--light-color);
    height: 13em;
    border-radius: 1em;
    border: 0.3em solid transparent;
    background-clip: content-box;
}

::-webkit-scrollbar-thumb:hover {
    background-color: var(--dark-color);
}

::-webkit-scrollbar-track {
    background-color: transparent;

}