/*
Theme Name: Glowing Child Theme
Theme URI: https://glowing.g5plus.net/
Author: G5 Theme
Author URI: https://themeforest.net/user/g5theme
Description: Child theme for Glowing Theme
Version: 1.0.0
Template: glowing
Text Domain: glowing-child
*/


#age-verification-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
    z-index: 10000;
}

#age-verification-popup {
    background: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    width: 90%;
    max-width: 400px;
}

#age-verification-popup h2 {
    margin-top: 0;
}

#age-verification-popup p {
    font-size: 14px;
    margin-bottom: 10px;
}

#age-verification-popup label {
    display: block;
    margin: 15px 0;
}

#age-verification-popup a {
    color: #0073aa;
    text-decoration: none;
}

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

#age-verification-popup button {
    width: 48%;
    padding: 10px;
    border: none;
    cursor: pointer;
    font-size: 16px;
    border-radius: 5px;
}

#age-verification-yes {
    background: green;
    color: white;
}

#age-verification-yes:disabled {
    background: gray;
    cursor: not-allowed;
}

#age-verification-no {
    background: red;
    color: white;
}

