
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    }
.cookie-popup {
    background: #fff;
    padding: 20px;
    border-radius: 0px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    text-align: center;
    width: 100%;
    margin-bottom: 10px;
}

.cookie-btn {
    margin: 10px;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    font-size: 16px;
}
.accept {
    background: #111;
    color: white;
}
.decline {
    background-color: #f48634!important;
    color: #fff;
    border: none;
}