/* Custom scrollbar for dark theme */
::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    background: #1e1e2e;
}
::-webkit-scrollbar-thumb {
    background: #45475a;
    border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
    background: #585b70;
}

/* Range input styling */
input[type="range"] {
    height: 6px;
    border-radius: 3px;
    cursor: pointer;
}

/* Event card hover */
.event-card:hover {
    border-color: #585b70;
}

/* Pulse animation for status badge */
.status-pulse {
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}
