body { padding: 0; margin: 0 }
#unity-container { position: fixed; width: 100%; height: 100%; }
#unity-canvas { width: 100%; height: 100%; background: #FFFFFF; display: block; }

#unity-loading-bar {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;

  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

/* Control the image size */
#loading-image {
  width: 260px; /* pick your size */
  height: auto;
  display: block;
}

/* Match the bar to the image */
#unity-progress-bar-empty {
  width: 100%;             /* relative to parent */
  max-width: 260px;        /* match image width */
  height: 24px;            /* bar height */
  background: #ccc;
  border-radius: 6px;
  overflow: hidden;
}

#unity-progress-bar-full {
  height: 100%;
  background: #4caf50;
  width: 0%;
  transition: width 0.2s ease;
}

#unity-warning { position: absolute; left: 50%; top: 5%; transform: translate(-50%); background: white; padding: 10px; display: none }
