/* Fullscreen Shortcode Styles - SIMPLIFIED AND RELIABLE */

/* Main fullscreen container - ALWAYS VISIBLE */
.ssp2-fullscreen-container {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    z-index: 999999 !important;
    background: #0f172a !important;
    display: block !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden !important;
}

/* Fullscreen iframe - ALWAYS VISIBLE */
.ssp2-fullscreen-frame {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    border: 0 !important;
    outline: 0 !important;
    display: block !important;
    background: #0f172a !important;
}

/* Handle WordPress admin bar */
body.admin-bar .ssp2-fullscreen-container {
    top: 32px !important;
    height: calc(100vh - 32px) !important;
}

/* Mobile admin bar */
@media screen and (max-width: 782px) {
    body.admin-bar .ssp2-fullscreen-container {
        top: 46px !important;
        height: calc(100vh - 46px) !important;
    }
}