body {
  padding: 0;
  margin: 0;
}

#root {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  width: 100vw;
  margin: 0; /* Remove any margin on the body */
  background-image: url("robot-background.svg"); /* Set the background image */
  background-size: cover; /* Scale the background image to cover the entire element */
  background-repeat: no-repeat; /* Prevent the background image from repeating */
  background-size: 1300px 600px;
  background-position: calc(50% - 22px) calc(50% - 6px); /* Move the background 10px right and 10px up */
}

#canvas-container {
  flex: 1; /* Allow the canvas container to grow and take remaining space */
  display: flex;
  justify-content: center; /* Center the canvas horizontally */
  align-items: center; /* Center the canvas vertically */
}
#unity-canvas {
  background: #231f20;
}
#unity-loading-bar {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: none;
}
#unity-logo {
  text-align: center;
  color: white;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 30px;
  margin-bottom: 40px;
}
#unity-progress-bar-empty {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  width: 141px;
  height: 18px;
  margin-top: 10px;
  background: url("TemplateData/progress-bar-empty-dark.png") no-repeat center;
}
#unity-progress-bar-full {
  width: 0%;
  height: 18px;
  margin-top: 10px;
  background: url("TemplateData/progress-bar-full-dark.png") no-repeat center;
}
#unity-footer {
  position: relative;
}
.unity-mobile #unity-footer {
  display: none;
}
#unity-webgl-logo {
  float: left;
  width: 204px;
  height: 38px;
  background: url("TemplateData/webgl-logo.png") no-repeat center;
}
#unity-build-title {
  float: right;
  margin-right: 10px;
  line-height: 38px;
  font-family: arial;
  font-size: 18px;
}
#unity-fullscreen-button {
  float: right;
  width: 38px;
  height: 38px;
  background: url("TemplateData/fullscreen-button.png") no-repeat center;
}
#unity-warning {
  position: absolute;
  left: 50%;
  top: 5%;
  transform: translate(-50%);
  background: white;
  padding: 10px;
  display: none;
}
