#container {
  position: absolute;
  width: 100vw;
  max-height: 20vw;
  left: 50%;
  bottom: 6vh;
  transform: translateX(-50%);
  z-index: 10;
  text-align: center;
  pointer-events: none;
  overflow-x: scroll;
  white-space: nowrap;
}

#container::-webkit-scrollbar {
  display: none;
}

.carousel {
  padding: 1.5rem;
  border: 0.3rem solid white;
  margin: 0.5rem;
  border-radius: 50%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  pointer-events: auto;
}

.coaching-overlay-prompt-status {
  text-shadow: 0px 0px 5px rgba(0, 0, 0, 0.1);
}

button:focus {
  box-shadow: 0px 0px 0px 0.3rem white;
  outline: none !important;
}

:xr-overlay {
  /* the following styling is identical to :fullscreen */
  padding-left: 45px !important;
  padding-right: 45px !important;
}

.fade-in {
  animation: fade-in 0.25s linear forwards;
}
@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.fade-out {
  animation: fade-out 0.25s linear forwards;
}
@keyframes fade-out {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

.coaching-overlay-container {
  background-color: rgba(0, 0, 0, 0.7);
}

#actionButton {
  background-color: #1f2936;
}

.toggle-container {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 20;
}
.toggle {
  position: relative;
  display: inline-block;
  width: 160px;
  height: 40px;
}
.toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #3498db;
  transition: 0.4s;
  border-radius: 34px;
}

.d-none {
  display: none;
}
.slider:before {
  position: absolute;
  content: "";
  height: 32px;
  width: 80px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: 0.4s;
  border-radius: 34px;
}
input:checked + .slider {
  background-color: #2ecc71;
}
input:checked + .slider:before {
  transform: translateX(72px);
}
.slider-text {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 80px;
  text-align: center;
  color: white;
  font-family: Arial, sans-serif;
  font-weight: bold;
  transition: 0.4s;
}
.ar-text {
  left: 0;
}
.threesixty-text {
  right: 0;
}
input:checked + .slider .ar-text {
  opacity: 0.5;
}
input:not(:checked) + .slider .threesixty-text {
  opacity: 0.5;
}

.container {
  display: flex;
  height: 100vh;
  width: 100vw; /* Ocupa todo el ancho de la ventana */
}

.left-frame {
  flex: 1;
  background-color: #f0f0f0;
}

.right-frame {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  font-size: 2em;
  color: #333;
}