/* cookie-consent-styles.css */
#cookieConsent {
    font-family: 'Poppins';
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #f1f1f1;
    padding: 20px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    display: none;
    z-index: 9999;
}

#cookieConsent.show {
    display: block;
}

/* Aggiorna questi stili nel tuo cookie-consent-styles.css */
#privacyButton {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: #4CAF50;
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    z-index: 9998;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    transition: background-color 0.3s, transform 0.2s;
}

#privacyButton:hover {
    background: #45a049;
    transform: scale(1.05);
}

#privacyButton svg {
    width: 24px;
    height: 24px;
}

#savePreferences {
    font-family: 'Poppins';
    bottom: 20px;
    right: 20px;
    background: #4CAF50;
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    border: none;
    z-index: 9998;
}

.consent-buttons {
    margin-top: 15px;
}

.consent-buttons button {
    margin: 5px;
    padding: 8px 15px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

#acceptAll {
    background: #4CAF50;
    color: white;
}

#customizeBtn {
    background: #f1f1f1;
    border: 1px solid #666;
}

#rejectAll {
    background: #f44336;
    color: white;
}

#consentModal {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 10000;
    max-width: 500px;
    width: 90%;
}

.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    z-index: 9999;
}

.consent-option {
    margin: 10px 0;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.consent-option label {
    display: flex;
    align-items: center;
    gap: 10px;
}