/* Désactive l'effet de highlight bleu sur mobile lors du clic */
* {
    -webkit-tap-highlight-color: transparent;
}

/* Animations fluides pour les transitions de vue */
.fade-in {
    animation: fadeIn 0.3s ease-out forwards;
}

.slide-up {
    animation: slideUp 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Scrollbar invisible mais fonctionnelle */
::-webkit-scrollbar { width: 0px; background: transparent; }
