/* Styles pour le bandeau de consentement */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #003087; /* Bleu principal du site */
    color: white;
    padding: 15px 20px;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.2);
    display: none; /* Caché par défaut, affiché via JS si nécessaire */
    z-index: 1000;
    font-family: Arial, sans-serif;
}

.cookie-consent p {
    margin: 0;
    font-size: 0.9em;
    line-height: 1.5;
    text-align: center;
}

.cookie-consent a {
    color: #ff6200; /* Orange du site */
    text-decoration: none;
    font-weight: bold;
}

.cookie-consent a:hover {
    text-decoration: underline;
}

.cookie-buttons {
    margin-top: 10px;
    text-align: center;
}

.cookie-btn {
    padding: 8px 16px;
    margin: 0 10px;
    border: none;
    border-radius: 4px;
    font-size: 0.9em;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cookie-btn.accept {
    background-color: #28a745; /* Vert pour accepter */
    color: white;
}

.cookie-btn.accept:hover {
    background-color: #218838;
}

.cookie-btn.reject {
    background-color: #ff6200; /* Orange pour refuser */
    color: white;
}

.cookie-btn.reject:hover {
    background-color: #e55a00;
}

/* Responsivité */
@media (max-width: 768px) {
    .cookie-consent {
        padding: 10px 15px;
    }

    .cookie-consent p {
        font-size: 0.85em;
    }

    .cookie-buttons {
        margin-top: 8px;
    }

    .cookie-btn {
        padding: 6px 12px;
        margin: 5px;
        font-size: 0.85em;
    }
}