.age-ver-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    /* Sötétített háttér */
    display: flex;
    /* Flexbox használata a középre igazításhoz */
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.age-ver-popup-content {
    background: #fff;
    padding: 40px;
    max-width: 500px;
    width: 100%;
    text-align: center;
    box-shadow: 0 2px 34px 0 rgba(0, 0, 0, .07);
    z-index: 10000;
    /* A popup legyen a blur fölött */
}

@media (min-width: 960px) {
    .age-ver-popup-content {
        max-width: 1000px;
    }
}

body.age-verification-active #age-verification-popup {
    pointer-events: auto;
}

body.age-verification-active>*:not(#age-verification-popup) {
    filter: blur(8px);
    /* Az összes háttér tartalom elhomályosítása, kivéve a popupot */
    pointer-events: none;
    /* Kattinthatatlan háttér */
}

body.age-verification-active {
    overflow: hidden;
    /* Görgetés tiltása */
}

.age-verification-inputs {
    margin: 20px 0;
    display: flex;
    gap: 15px;
    justify-content: space-between;
}

.age-verification-inputs input {
    width: 30%;
    padding: 10px;
    font-size: 16px;
    text-align: center;
}

.age-verification-buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.age-verification-buttons button {
    width: 48%;
    padding: 10px;
    font-size: 16px;
    cursor: pointer;
}

.age-verification-buttons button:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}