/* Styles pour la gestion des cookies */

#cookie-management-footer {
    position: fixed;
    bottom: 90px;
    right: 20px;
    z-index: 99998;
    transition: all 0.3s ease;
}

#cookie-management-footer button {
    background: #007bff;
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 12px;
    box-shadow: 0 2px 10px rgba(0,123,255,0.3);
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
}

#cookie-management-footer button:hover {
    background: #0056b3;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,123,255,0.4);
}

#cookie-management-footer button:active {
    transform: translateY(0);
}

/* Responsive design */
@media (max-width: 768px) {
    #cookie-management-footer {
        bottom: 80px;
        right: 15px;
    }
    
    #cookie-management-footer button {
        padding: 6px 12px;
        font-size: 11px;
    }
}

/* Animation d'apparition */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

#cookie-management-footer {
    animation: slideInUp 0.5s ease-out;
}

/* Style pour la bannière Axeptio personnalisée */
.axeptio-cookie-banner {
    font-family: 'Montserrat', sans-serif !important;
}

/* Masquer le bouton si Axeptio n'est pas chargé */
.axeptio-not-loaded #cookie-management-footer {
    display: none;
}
