html,
body {
  padding: 0;
  margin: 0;
  height: 100%;
  width: 100%;
  /*background: #060608;*/
  background: #000000;
  overflow: hidden; /* Hide overflow to prevent scroll bars */
  font-family: "Noto Sans", sans-serif !important; /* Add here for base font */
}

@font-face {
  font-family: "Noto Sans";
  src: url("Noto-Sans.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap; /* Add for better font loading behavior */
}

body {
  font-family: "Noto Sans", sans-serif;
}

.install-container {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: none;
  z-index: 1000;
}

#installButton {
  padding: 10px 20px;
  background: #2196f3;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
}

#loadingContainer {
  width: 100%;
  text-align: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

#progressText {
  font-family: "Noto Sans", sans-serif;
  font-size: 20px;
  color: white;
}

#unity-container {
  padding: 0;
  margin: 0;
  position: absolute;
  left: 50%;
  top: 0;
  height: 100%;
  width: 100%;
  transform: translate(-50%, 0%);
}

#unity-canvas {
  position: absolute;
  left: 50%;
  top: 0;
  padding: 0;
  margin: 0;
  background: #000000;
  outline: 0px solid #ab5236 !important;
  border-radius: 0;
  transform: translate(-50%, 0%);
  image-rendering: pixelated;
}
