html, body {
  padding: 0;
  margin: 0;
  overflow: hidden;
  background: #000000;
  height: 100%;
  width: 100%;
}

#unity-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #000000;
}

#unity-canvas {
  width: 100%;
  height: 100%;
  display: block;
  background: #000000;
}

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

#unity-logo {
  width: 150px;
  height: 40px;
}

#unity-progress-bar-empty {
  width: 150px;
  height: 8px;
  margin-top: 20px;
  background: #000000;
  border-radius: 4px;
  overflow: hidden;
}

#unity-progress-bar-full {
  width: 0%;
  height: 100%;
  background: #000000;
}

#unity-footer {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 38px;
  display: flex;
  align-items: center;
  background: #000000;
  padding: 0 10px;
  box-sizing: border-box;
}

#unity-logo-title-footer {
  flex: 1;
}

#unity-fullscreen-button {
  width: 24px;
  height: 24px;
  background: #000000;
  border-radius: 4px;
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
}

#unity-fullscreen-button::before {
  content: "⛶";
  color: white;
  font-size: 16px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

#unity-fullscreen-button:hover {
  background: #000000;
}

#unity-build-title {
  color: white;
  font-family: sans-serif;
  font-size: 14px;
  margin-left: 10px;
  flex-shrink: 0;
}

#unity-warning {
  position: absolute;
  left: 50%;
  top: 5%;
  transform: translate(-50%);
  background: white;
  padding: 10px;
  display: none;
  z-index: 10;
}


