/* GameMonetize hosts the game in a fixed-size iframe: fill it edge to edge. */
html, body {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background: #0b0709;
}

#unity-container {
  position: absolute;
  inset: 0;
}

#unity-canvas {
  width: 100%;
  height: 100%;
  display: block;
  background: #0b0709;
  touch-action: none;
}

#unity-loading-bar {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: none;
}

#unity-progress-bar-empty {
  width: 280px;
  height: 14px;
  background: rgba(255, 255, 255, 0.14);
  border-radius: 7px;
  overflow: hidden;
}

#unity-progress-bar-full {
  width: 0%;
  height: 100%;
  background: #ffc747;
  border-radius: 7px;
}

#unity-warning {
  position: absolute;
  left: 50%;
  top: 12px;
  transform: translate(-50%, 0);
  background: white;
  padding: 10px;
  display: none;
  font-family: sans-serif;
  z-index: 10;
}
