#cbm-cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #000;
    color: #fff;
    font-size: 12px;
    padding: 10px 14px;
    z-index: 9999;
    display: none;
    transition: opacity 0.3s ease;
}

#cbm-cookie-banner[aria-hidden="false"] {
    display: block;
    opacity: 1;
}

#cbm-cookie-banner[aria-hidden="true"] {
    display: none;
}

.cbm-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.cbm-buttons button {
    background: #fff;
    color: #000;
    border: none;
    padding: 5px 8px;
    font-size: 11px;
    cursor: pointer;
    margin-left: 4px;
}

.cbm-buttons button:hover {
    opacity: 0.85;
}

#cbm-cookie-settings {
    display: none;
    margin-top: 8px;
    border-top: 1px solid #333;
    padding-top: 6px;
}

#cbm-cookie-settings label {
    display: block;
    margin: 4px 0;
    font-size: 11px;
}

#cbm-save {
    margin-top: 6px;
    background: #fff;
    color: #000;
    border: none;
    padding: 5px 8px;
    font-size: 11px;
    cursor: pointer;
}

/* Boutons principaux : Accepter et Personnaliser */
#cbm-accept,
#cbm-customize {
    background: #000;      /* fond noir */
    color: #fff;           /* texte blanc */
    border: 1px solid #fff; /* bordure blanche fine */
    padding: 5px 8px;      /* padding réduit */
    font-size: 11px;       /* légèrement plus petit */
    cursor: pointer;
    margin-left: 4px;
    border-radius: 3px;    /* coins légèrement arrondis */
    transition: opacity 0.2s ease;
}

#cbm-accept:hover,
#cbm-customize:hover {
    opacity: 0.85;         /* léger effet au survol */
}