#age-verification-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(0, 0, 0); /* Semi-transparent background */
    display: none; /* Hidden by default */
    justify-content: center;
    align-items: center;
    z-index: 1000; /* Ensure it's on top of everything */
}

#age-verification-modal {
    background-color: #fff;
    padding: 30px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    max-width: 700px;
}

#age-verification-modal > div{
    padding: 20px;
    max-width: 400px;
}


#age-verification-modal img{
    margin-bottom: 20px;
}


#age-verification-modal p {
    margin-bottom: 10px;
    font-size: 15px;
}


#age-verification-modal small {
    display: block;
    line-height: 1.7;
    margin-top: 14px;
    font-size: 11px;
}

.age-verification-buttons button {
    padding: 5px 20px;
    margin: 0;
    cursor: pointer;
    border: none;
    border-radius: 5px;
    font-size: 15px;
        border: 1px solid #ffd93b;
    color: #000;
    transition: all 0.3s ease;
}

#age-verification-yes {
    background: #ffd93b;
}

#age-verification-no {
    background: none;
    border: 1px solid #ffd93b;
}

#age-verification-no:hover,
#age-verification-yes:hover {
    border: 1px solid #000;
    background: #000;
    color: #fff;

}



/* You can add more styles to match your theme */