* {
    font-family: Urbanist, sans-serif;
    box-sizing: border-box;
}

html, body {
    overflow-x: hidden;
    scroll-behavior: smooth;
}

button {
    cursor: pointer;
}

button:disabled {
    cursor: not-allowed;
}

::-webkit-scrollbar {
    width: 12px;
    height: 12px;
}

::-webkit-scrollbar-track {
    background-color: #f1f1f1;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background-color: #f3b62f;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background-color: #f3b62f;
}

::-webkit-scrollbar-corner {
    background-color: #f1f1f1;
}

@keyframes fade-in-up {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in-up {
    animation: fade-in-up 0.8s ease-out forwards;
}

/* Styles pour les résultats de recherche Spotify */
#spotify-results {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

#spotify-results > div:last-child {
    border-bottom: none;
}

.notification {
    z-index: 1000;
}