::-webkit-scrollbar {
    width: 10px; 
    height: 10px; 
}
::-webkit-scrollbar-track {
    background: #050505; 
}
::-webkit-scrollbar-thumb {
    background: linear-gradient(to bottom, #6366f1, #a855f7); 
    border-radius: 10px; 
    border: 2px solid #050505; 
}
::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(to bottom, #818cf8, #c084fc);
    cursor: grab;
}
::-webkit-scrollbar-button {
    display: none;
}