.cookies_Popup {
    position: fixed;
    inset: 0;
    z-index: 9999;
}

.cookie-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
}

.cookies {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #353535;
    color: white;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    z-index: 10000;
}

.cookie-inner {
    flex: 1 0 300px;
    margin: 15px;
}

.cookie-text {
    margin-bottom: 10px;
    line-height: 1.5;
}

.cookie-actions {
    display: flex;
    gap: 10px;
    justify-content: end;
}

.accept-btn {
    background: #eae9e8;
    border: none;
    padding: 6px 14px;
    cursor: pointer;
    font-weight: 600;
    max-width: 110px;
    color: #000;
}

.manage-btn {
    background: transparent;
    border: none;
    color: white;
    padding: 6px 14px;
    cursor: pointer;
    max-width: 200px;
    text-decoration: underline;
}

.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 10001;
}

.cookie-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 420px;
    max-height: 80vh;
    background: #fff;
    border: 3px solid rgb(101, 192, 254);
    border-radius: 6px;
    z-index: 10002;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
}

.cookie-modal .modal-header {
    background: #007bff21;
    padding: 12px 16px;
    font-size: 20px;
    font-weight: 600;
}

.cookie-modal .modal-body {
    padding: 18px;
    overflow-y: auto;
}

.cookie-modal .modal-body p {
    font-size: 14px;
    margin-bottom: 16px;
    line-height: 1.5;
    color: #000;
}

/* .modal-body label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 14px;
    font-size: 15px;
    line-height: 1.4;
} */
/* 
.modal-body input[type="checkbox"] {
    margin-top: 3px;
} */

#cookieForm {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    /* gap: 18px; */
    margin-top: 1rem;
}

#cookieForm label {
    display: grid;
    grid-template-columns: 22px auto;
    column-gap: 6px;
    align-items: start;
    font-size: 15px;
    line-height: 1.4;
}

#cookieForm input[type="checkbox"] {
    margin-top: 5px;
}


#saveCookiesBtn {
    width: 30%;
    margin-top: 18px;
    padding: 10px;
    border: 1px solid #000;
    background: #007bff8a;
    border-radius:10px ;
    cursor: pointer;
    font-size: 16px;
    display: block;
    margin: 22px auto 0;
    color: #000;

}


#cookieForm.centered label {
    justify-items: center;
}