.avp-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

.avp-modal-active .avp-modal {
    display: flex;
}

.avp-modal-content {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    max-width: 400px;
    width: 90%;
}

.avp-modal-content h2 {
    margin-bottom: 20px;
    font-size: 24px;
}

.avp-modal-content p {
    margin-bottom: 20px;
}

#avp-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

#age-input {
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 5px;
    width: 100px;
    margin: 0 auto;
}

.avp-modal-content button {
    padding: 10px 20px;
    background: #007bff;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

.avp-modal-content button:hover {
    background: #0056b3;
}

.avp-error {
    color: red;
    margin-top: 10px;
}