
/* Styles de la bannière Loi 25 */
.loi25-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 20px;
    box-shadow: 0 -4px 15px rgba(0,0,0,0.3);
    z-index: 999999;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}
.loi25-banner-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.loi25-banner h3 {
    margin: 0;
    font-size: 1.2rem;
    color: #fff;
}
.loi25-banner p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.4;
    color: #ccc;
}
.loi25-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 5px;
}
.loi25-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    font-weight: bold;
    cursor: pointer;
    font-size: 0.9rem;
}
.loi25-btn-accept {
    background-color: #0073aa;
    color: #fff;
}
.loi25-btn-accept:hover {
    background-color: #005177;
}
.loi25-btn-reject {
    background-color: #d9534f;
    color: #fff;
}
.loi25-btn-reject:hover {
    background-color: #c9302c;
}
.loi25-btn-settings {
    background-color: #555;
    color: #fff;
}
.loi25-btn-settings:hover {
    background-color: #333;
}

/* Modal */
.loi25-modal {
    position: fixed;
    z-index: 1000000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
}
.loi25-modal-content {
    background-color: #fff;
    color: #333;
    padding: 30px;
    border-radius: 6px;
    width: 90%;
    max-width: 500px;
    position: relative;
    box-shadow: 0 5px 25px rgba(0,0,0,0.3);
}
.loi25-close {
    color: #aaa;
    position: absolute;
    right: 20px;
    top: 15px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}
.loi25-close:hover {
    color: #000;
}
