#ageVerificationModal {
    display: none; /* Initially hidden */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000; /* Increased z-index */
}

#ageVerificationModal > div {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    text-align: center;
}


.ageConfirmButton, .ageDenyButton {
    padding: 10px 20px;
    margin: 10px;
    cursor: pointer;
    font-size: 16px;
    border: none;
}

.ageConfirmButton {
    background-color: #4CAF50; /* Green */
    color: white;
}

.ageDenyButton {
    background-color: red; /* Red */
    color: white;
    opacity: 0.5;
}

.ageDenyButton:hover, .ageConfirmButton:hover {
    opacity: 1;
}
