.age-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.age-popup {
    background: white;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    max-width: 400px;
    width: 90%;
}

.age-popup h2 {
    color: #C2B08A;
    font-size: 16px;
    margin-bottom: 20px;
}

.age-popup-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.age-popup-button {
    padding: 12px 40px;
    border: none;
    border-radius: 25px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.age-popup-button.yes {
    background-color: #C2B08A;
    color: white;
}

.age-popup-button.no {
    background-color: #ff0000;
    color: white;
}

.age-popup-button:hover {
    opacity: 0.9;
} 

.span-age-popup{
    color: black;
    font-size: 20px;
}
