﻿/* Ensure the iframe container covers the full viewport */
.iframe-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000; /* Optional: Background color while loading */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1050; /* Ensure it appears above other elements */
}

iframe {
    width: 80%;
    height: 80%;
    border: none;
    box-shadow: 0 0 10px rgba(0,0,0,0.5);
    border-radius: 8px;
    display: none; /* Initially hidden */
}

/* Responsive adjustments */
@media (max-width: 768px) {
    iframe {
        width: 95%;
        height: 70%;
    }
}

/* Position the back button */
.commandbar {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 1100; /* Above the iframe container */
}

.footer-wrapper {
    display: none;
}
