body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f4f4f9;
  color: #333;
}

.container {
  max-width: 800px;
  margin: 20px auto;
  padding: 20px;
  background: white;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

h1 {
  text-align: center;
  color: #444;
}

.video-container {
  display: flex;
  justify-content: space-around;
  margin: 20px 0;
}

video {
  width: 45%;
  border-radius: 8px;
  background: #000;
  border: 1px solid #ddd;
}

.controls {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.controls > div {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

input, button {
  padding: 8px 12px;
  border-radius: 4px;
  border: 1px solid #ddd;
}

button {
  background: #007BFF;
  color: white;
  border: none;
  cursor: pointer;
}

button:disabled {
  background: #cccccc;
  cursor: not-allowed;
}

#status {
  margin-top: 10px;
  padding: 10px;
  background: #f8f9fa;
  border-radius: 4px;
  text-align: center;
  font-weight: bold;
}
