body {
  margin: 0;
  overflow: hidden;
}

#status {
  position: absolute;
  top: 5vh;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  background: rgba(0, 0, 0, 0.7);
  padding: 1rem;
  border-radius: 0.5rem;
  z-index: 1000;
  text-align: center;
  font-size: 1.2rem;
}

#cameraView {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  z-index: 100;
}