/*
Theme Name: GAS Web App Fullscreen
Theme URI: 
Author: Anda
Author URI: 
Description: Tema minimalis khusus untuk membungkus Google Apps Script (GAS) secara full screen.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: gas-fullscreen
*/

body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    overflow: hidden; /* Mencegah scrollbar ganda dari browser */
    background-color: #000; /* Background hitam selagi iframe loading */
}

.app-script-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--app-height, 100vh);
}

.app-script-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}