/*
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.1
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: gas-fullscreen
*/

/* Reset dasar dan pengamanan tampilan UI */
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 */
    
    /* Mencegah layar biru/sorotan teks saat pengguna menyentuh layar HP terlalu lama */
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Wrapper utama menggunakan CSS Variable dari JavaScript (index.php) */
.app-script-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh; /* Fallback yang aman jika JavaScript dimatikan oleh browser pengguna */
    height: var(--app-height, 100vh);
}

/* Membuat iframe benar-benar penuh dan rapi */
.app-script-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}