.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0,0,0,0.95);
    color: white;
    text-align: center;
    padding: 10px;
    font-family: Arial, sans-serif;
    display: none;
    justify-content: center;
    align-items: center;
}

.cookie-banner-content{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cookie-banner-text{
    width:70%;
}

.cookie-banner-buttons{
    width:30%;
    text-align:right;
}

.cookie-banner-content p {
    margin: 0;
    padding: 0;
}

.cookie-btn {
    background-color: #1EE8D7;
    border: none;
    color: white;
    padding: 0px 0px;
    margin: 0px;
    cursor: pointer;
    font-size: 16px;
    border-radius: 6px;
    min-width: unset;
    width: 30%;
}

.cookie-btn:hover {
    background-color: #45a049;
}

#settings-cookies {
    background-color: #f0ad4e;
}

#settings-cookies:hover {
    background-color: #ec971f;
}

.cookie-banner::before {
    content: "";
    position: absolute;
    top: -20px; /* Ajuste la hauteur du flou */
    left: 0;
    width: 100%;
    height: 20px;
    background: linear-gradient(rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100%);
    pointer-events: none;
}


@media screen and (max-width: 736px) {
    .cookie-btn {
        padding: 0px 0px;
        margin: 5px;
        font-size: 10px;
        width: 80%;
    }


    .cookie-banner-text, .cookie-banner-buttons{
        width:auto;
    }

    .cookie-banner-content{
        flex-direction: column;
    }
}