::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-thumb {
    background-color: gray;
    border-radius: 10px;
    transition: 0.2s;
}

::-webkit-scrollbar-thumb:hover {
    background-color: rgb(92, 92, 92);
    transition: 0.2s;
}

::-webkit-scrollbar-track {
    background-color: black;
}

.dark {
    background-color: #090909;
    color: white;
}