/* Bannière de consentement aux cookies */
#cookieConsent {
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: darkgreen;
    color: white;
    text-align: center;
    padding: 10px 0;
    z-index: 1000;
    display: none; /* Masqué par défaut */
}

.cookieConsentContainer {
    max-width: 800px;
    margin: 0 auto;
    padding: 10px;
}

#cookieConsent p {
    margin: 0;
    padding: 0;
    display: inline-block;
}

#cookieConsent a {
    color: #ffd700;
    text-decoration: underline;
}

#cookieConsent button {
    background-color: #ffd700;
    color: darkgreen;
    border: none;
    padding: 5px 10px;
    margin-left: 10px;
    cursor: pointer;
}

#cookieConsent button:hover {
    background-color: #ffcc00;
}

/* Message d'avertissement */
#warningMessage {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: darkgreen;
    color: white;
    padding: 20px;
    border-radius: 5px;
    z-index: 1001;
    text-align: center;
}

.warningMessageContainer {
    max-width: 400px;
    margin: 0 auto;
}

#warningMessage p {
    margin: 0 0 10px 0;
}

#warningMessage button {
    background-color: #ffd700;
    color: darkgreen;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
}

#warningMessage button:hover {
    background-color: #ffcc00;
}