#consent-banner-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 1);
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

#consent-banner {
    background-color: #fff;
    border: 2px solid #b99dd8;
    border-radius: 10px;
    padding: 20px;
    max-width: 600px;
    width: 100%;
    top: 20px;
    bottom: 20px;
    position: fixed;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 1001;
    text-align: center;
    margin: 0 20px;
    margin-left: auto;
    margin-right: auto;
}
#consent-banner p, #consent-banner div {
    margin: 10px 0;
}

.toggle-switch {
    position: relative;
    width: 40px;
    height: 20px;
    -webkit-appearance: none;
    background-color: #ccc;
    outline: none;
    border-radius: 20px;
    transition: background-color 0.2s;
    cursor: pointer;
}

.toggle-switch:checked {
    background-color: #4CAF50;
}

.toggle-switch:before {
    content: '';
    position: absolute;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    top: 1px;
    left: 1px;
    background-color: white;
    transition: 0.2s;
}

.toggle-switch:checked:before {
    transform: translateX(20px);
}

#toggle-all {
    position: relative;
    width: 50px;
    height: 24px;
    -webkit-appearance: none;
    background-color: #ccc;
    outline: none;
    border-radius: 12px;
    transition: background-color 0.2s;
    cursor: pointer;
}

#toggle-all:checked {
    background-color: #4CAF50;
}

#toggle-all:before {
    content: '';
    position: absolute;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    top: 1px;
    left: 1px;
    background-color: white;
    transition: transform 0.2s;
}

#toggle-all:checked:before {
    transform: translateX(26px);
}

.tous-les-cookies{
    font-size: 1.5em;
}
