/* scroll.css */

.custom-scroll {
    scrollbar-width: thin;
    scrollbar-color: #5f718d transparent;
}

.custom-scroll::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

.custom-scroll::-webkit-scrollbar-track {
    background: transparent;
    margin: 10px 0;
}

.custom-scroll::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #334155, #64748b);
    border-radius: 999px;
    border: 2px solid transparent;
    background-clip: padding-box;
}

.custom-scroll::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #475569, #94a3b8);
    border: 2px solid transparent;
    background-clip: padding-box;
}

.custom-scroll::-webkit-scrollbar-button {
    display: none;
    width: 0;
    height: 0;
}

.custom-scroll::-webkit-scrollbar-button:single-button,
.custom-scroll::-webkit-scrollbar-button:vertical:decrement,
.custom-scroll::-webkit-scrollbar-button:vertical:increment,
.custom-scroll::-webkit-scrollbar-button:horizontal:decrement,
.custom-scroll::-webkit-scrollbar-button:horizontal:increment {
    display: none;
    width: 0;
    height: 0;
}

.custom-scroll::-webkit-scrollbar-corner {
    background: transparent;
}