/* Styles personnalisés pour l'application Makeup */

/* Styles pour le header transparent */
.transparent-header {
    background-color: transparent !important;
    box-shadow: none !important;
    transition: all 0.3s ease;
}

/* Styles pour le header fixe */
.fixed-header {
    position: fixed !important;
    top: 0;
    left: 0;
    right: 0;
    background-color: white !important;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1) !important;
    z-index: 1000;
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}
