/* Fullscreen overlay for all non-logged-in users */
#darulhana-login-popup {
    position: fixed;
    inset: 0;                /* shorthand for top:0; right:0; bottom:0; left:0 */
    width: 100vw;
    height: 100vh;
    background: #000;        /* solid black background */
    z-index: 99999;          /* ensure it sits above everything */
    display: flex;
    align-items: center;     /* vertical centering */
    justify-content: center; /* horizontal centering */
    overflow: hidden;
}

/* Prevent page scrolling when overlay is active */
body.darulhana-logged-out {
    overflow: hidden !important;
}

/* Container for shortcode output */
#darulhana-login-popup .dh-login-content {
    width: 100%;
    max-width: 520px;
    padding: 0 20px;
    text-align: center;
    color: #fff;             /* default text color white for visibility */
}

/* Shortcode block inside popup */
#darulhana-login-popup .dh-google-shortcode {
    font-size: 16px;
    line-height: 1.4;
}

/* Ensure any link generated by shortcode is visible */
#darulhana-login-popup .dh-google-shortcode a {
    color: #474747;
    text-decoration: none;
    font-weight: thin;

}

#darulhana-login-popup .dh-google-shortcode a:hover,
#darulhana-login-popup .dh-google-shortcode a:focus {
    text-decoration: underline;
}

svg.dh-google-icon {
    display: none !important;
}
