/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #121212;
}
::-webkit-scrollbar-thumb {
    background: #282828;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #3e3e3e;
}

/* Smooth transitions */
* {
    scrollbar-color: #282828 #121212;
}

/* Remove default date input icon color issue on dark bg */
input[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(1);
}

/* Sidebar active indicator */
.nav-link {
    transition: all 0.15s ease;
}

/* Animate new badge */
@keyframes pulse-spotify {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}
.animate-pulse-spotify {
    animation: pulse-spotify 2s ease-in-out infinite;
}


