.cookie-banner {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.6);

    display: flex;
    justify-content: center;
    align-items: center;

    z-index: 99999;
}

.cookie-box {

    background: #f5ece7;

    border: 1px solid #c5a99d;

    border-radius: 12px;

    width: 90%;
    max-width: 500px;

    padding: 30px;

    text-align: center;
    color: #000000;

    box-shadow: 0 10px 30px rgba(0,0,0,.25);

    text-align: center;
}

.cookie-box h3 {
    margin-top: 0;

    color: #f59c6f;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.cookie-buttons {



    display: flex;
    gap: 10px;

    justify-content: center;
    flex-wrap: wrap;
}

.cookie-buttons button {
    margin-top: 20px;

    background: #f59c6f;
    color: white;

    cursor: pointer;

    padding: 10px 20px;

    border: none;

    border-radius: 6px;

    cursor: pointer;
}

.hidden {
    display:none;
}