body {
  margin: 0;
  font-family: sans-serif;
  background: #1e1e2f;
  color: white;
  display: flex;
  height: 100vh;
  align-items: center;
  justify-content: center;
}

.container {
  width: 90%;
  max-width: 800px;
  text-align: center;
}

#video-container {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}

video {
  width: 48%;
  height: auto;
  border-radius: 8px;
  background-color: black;
}

input {
  padding: 10px;
  width: 70%;
  border-radius: 5px;
  border: none;
  margin-right: 5px;
}

button {
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  background-color: #00bfa6;
  color: white;
  cursor: pointer;
}

button:hover {
  background-color: #009f90;
}

.hidden {
  display: none;
}

.status {
  position: fixed;
  top: 15px;
  right: 15px;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  z-index: 9999;
  border: 2px solid white;
}

.status.green {
  background-color: #00ff00;
}

.status.red {
  background-color: #ff3c3c;
}
