/* Self-Hosted Page - Full Page Chat */

/* Hide footer and background blobs when chat page is active */
body:has(.sh-fullpage) .site-footer,
body:has(.sh-fullpage) .back-to-top,
body:has(.sh-fullpage) .bg-wrapper {
    display: none !important;
}

/* Make main fill the viewport below the fixed nav */
main:has(.sh-fullpage) {
    padding: 0 !important;
    margin: 0 !important;
    height: calc(100vh - 60px);
    margin-top: 60px !important;
    overflow: hidden;
}

.sh-fullpage {
    width: 100%;
    height: 100%;
}

.sh-iframe-full {
    display: block;
    width: 100%;
    height: 100%;
    border: none;
}

@media (max-width: 768px) {
    main:has(.sh-fullpage) {
        height: calc(100vh - 50px);
        margin-top: 50px !important;
    }
}
