/*
 * Ce fichier est minimaliste. 
 * Bootstrap gère la plupart des styles.
 * Le mode sombre est géré par l'attribut [data-bs-theme] sur <html>
 */

/* --- Confettis CSS (Inchangé) --- */
#confetti-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    overflow: hidden;
}

.confetto {
    position: absolute;
    width: 10px;
    height: 10px;
    background-color: #f00;
    opacity: 0;
    transform: rotate(45deg);
    animation: fall linear forwards;
}

@keyframes fall {
    to {
        transform: translateY(100vh) rotate(360deg);
        opacity: 0.8;
    }
}