/* Style pour la bannière de consentement */
.cookie-consent-banner2 {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 10px;
    text-align: center;
    z-index: 1000;
}

.cookie-content2 p {
    margin: 0;
}

.cookie-content2 button {
    background-color: #4CAF50;
    color: white;
    border: none;
    padding: 10px 20px;
    margin: 5px;
    cursor: pointer;
}

.cookie-content button:hover {
    background-color: #45a049;
}

/* Style pour la fenêtre modale de gestion des préférences */
.cookie-preferences-modal2 {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1001;
    justify-content: center;
    align-items: center;
}

.modal-content2 {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    width: 400px;
    text-align: center;
}

/*
#save-preferences2, #close-modal2 {
    background-color: #4CAF50;
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    margin: 10px;
}
*/

#close-modal2 {
    background-color: #4CAF50;
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    margin: 10px;
}

#save-preferences2:hover, #close-modal2:hover {
    background-color: #45a049;
}