body {
  padding: 0;
  margin: 0
}

#unity-container {
  position: fixed;
  width: 100%;
  height: 100%;
}

#unity-canvas {
  width: 100%;
  height: 100%;

  background: {
      {
        {
        BACKGROUND_COLOR
      }
    }
  }
}

#unity-loading-bar {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: none
}

#unity-logo {
  width: 154px;
  height: 130px;
  background: url('unity-logo-dark.png') no-repeat center
}

#unity-progress-bar-empty {
  margin-left: auto;
  margin-right: auto;
  width: 141px;
  height: 18px;
  margin-top: 10px;
  background: url('progress-bar-empty-dark.png') no-repeat center
}

#unity-progress-bar-full {
  display: none;
  width: 0%;
  height: 18px;
  margin-top: 10px;
  background: url('progress-bar-full-dark.png') no-repeat center
}

#unity-warning {
  position: absolute;
  left: 50%;
  top: 5%;
  transform: translate(-50%);
  background: white;
  padding: 10px;
  display: none
}

#status {
  justify-content: center;
  align-items: center;
  color: white;
}

.waiting-room-ui {
  position: absolute;
  top: 20px;
  left: 20px;
  background-color: rgba(255, 255, 255, 0.9);
  padding: 20px 30px;
  border-radius: 20px;
  font-family: sans-serif;
  color: #003366;
  z-index: 9999;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.status-row {
  display: flex;
  align-items: center;
  margin-top: 10px;
}

.loading-icon {
  margin-left: 10px;
  width: 16px;
  height: 16px;
  background: url('icons/loading.gif') no-repeat center center;
  background-size: contain;
  display: inline-block;
}

.ready-icon {
  margin-left: 10px;
  width: 16px;
  height: 16px;
  background: url('icons/tick.png') no-repeat center center;
  background-size: contain;
  display: inline-block;
}

.reload-btn {
  width: 300px;
  height: 300px;
  border: none;
  border-radius: 24px;
  font-size: 2rem;
  font-weight: bold;
  color: #fff;
  background: #0078ff;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
