#rgpd-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0,0,0,0.80);
    color: #fff;
    padding: 15px 20px;
    z-index: 9999;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
	text-align: center;
    font-size: 14px;
}

#rgpd-banner p {
    margin: 0;
    max-width: 100%;
	margin-right: 30px;
}

.rgpd-buttons {
    align-self: flex-start;
    display: flex;
    gap: 10px; /* ← règle l'espacement horizontal entre les boutons */
}

.rgpd-buttons button {
    padding: 8px 14px;
    border: none;
    cursor: pointer;
    font-weight: 600;
}

#rgpd-accept {
    background: #2ecc71;
    color: #000;
}

#rgpd-accept:hover {
    background: #4eea8a; /* vert plus clair */
}


#rgpd-settings,
#rgpd-reject {
    background: #ccc;
    color: #000;
}

@media (max-width: 768px) {
    #rgpd-banner p {
        margin-bottom: 20px;
    }
}
