/* Base reset */
html, body { height: 100%; }
body { margin: 0; padding: 0; }

/* Container / canvas (desktop only) */
#unity-container { 
  position: relative;
  width: 100%;
  height: 100vh;      /* fill viewport (or parent if overridden) */
  display: block;
  background: #fff;
}

#unity-canvas {
  display: block;
  width: 100%;
  height: 100%;       /* canvas stretches with container */
  background: #FFFFFF;
  margin: 0;
}

/* Loading screen */
#unity-loading-bar {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  display: none;
  z-index: 1100;
}

/* Optional Unity logo (kept for compatibility with template assets) */
#unity-logo {
  width: 154px; height: 130px;
  background: url('unity-logo-light.png') no-repeat center;
}

/* Progress bar */
#unity-progress-bar-empty {
  width: 141px; height: 18px;
  margin-top: 10px; margin-left: 6.5px;
  background: url('progress-bar-empty-light.png') no-repeat center;
}
#unity-progress-bar-full  {
  width: 0%; height: 18px;
  margin-top: 10px;
  background: url('progress-bar-full-light.png') no-repeat left center;
}

/* Footer (overlay; no page push) */
#unity-footer {
  position: absolute; bottom: 12px; left: 12px;
  width: auto; height: auto;
  background: transparent; padding: 0; border: 0;
  z-index: 900;
}

/* Hide “FireSmart” build title text (if still present in HTML) */
#unity-build-title { display: none !important; }

/* FireSmart branding */
#firesmart-logo {
  width: 160px; height: 130px;
  background: url('FS-logo.svg') no-repeat center;
  background-size: contain;
  margin: 0 auto;
}
#firesmart-logo-footer {
  float: left;
  width: 102px; height: 38px;
  background: url('FS-logo.svg') no-repeat center;
  background-size: contain;
}

/* Unity warning banner */
#unity-warning {
  position: absolute; left: 50%; top: 5%;
  transform: translate(-50%);
  background: #fff; padding: 10px; display: none;
}


