/* Cookie Banner */
#cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-image: 
        radial-gradient(circle at center, #353638 0.25rem, transparent 0), /* points gris foncé */
        radial-gradient(circle at center, #353638 0.25rem, #262729 0);        /* points gris clair */
    background-size: 1.3rem 1.3rem;
    background-position: 0 0, 0.65rem 0.65rem;
    
    color: #fff;
    padding: 15px 20px;
    text-align: center;
    font-size: 14px;
    z-index: 9999;
    display: none; /* caché par défaut, affiché via JS */
    box-sizing: border-box;
}

#cookie-banner p {
    margin: 0;
    line-height: 1.5;
}

#cookie-banner button {
    margin-left: 10px;
    padding: 6px 14px;
    cursor: pointer;
    border: none;
    border-radius: 4px;
    font-weight: bold;
    font-size: 14px;
    transition: background-color 0.2s ease, color 0.2s ease, border 0.2s ease;
}

/* Accept button : bleu plein */
#cookie-banner button#accept-cookies {
    background-color: #2781b2; /* bleu */
    color: white;
}

#cookie-banner button#accept-cookies:hover {
    background-color: #2781b2;
}

/* Reject button : transparent avec contour bleu */
#cookie-banner button#reject-cookies {
    background-color: transparent;
    color: #2781b2;
    border: 2px solid #2781b2;
}

#cookie-banner button#reject-cookies:hover {
    background-color: #2781b2;
    color: white;
}

/* Responsive pour petits écrans */
@media screen and (max-width: 500px) {
    #cookie-banner {
        font-size: 13px;
        padding: 12px;
    }

    #cookie-banner button {
        padding: 5px 10px;
        font-size: 13px;
        margin-left: 5px;
    }
}
