.events-list {
    overflow-y: auto;
    overflow-x: hidden;
    
    scrollbar-width: thin;
    scrollbar-color: #CECDCD #F5F5F5;
}

.events-list::-webkit-scrollbar {
    width: 6px;
}

.events-list::-webkit-scrollbar-track {
    background: #F5F5F5;
    border-radius: 4px;
}

.events-list::-webkit-scrollbar-thumb {
    background: #CECDCD;
    border-radius: 4px;
    border: none;
}

.events-list::-webkit-scrollbar-thumb:hover {
    background: #B0B0B0;
}

.events-list::-webkit-scrollbar-button {
    display: none;
}

.events-list {
    scroll-behavior: smooth;
} 