body {
  min-height: 100vh; /* Ensure the body covers the full viewport height */
  background: linear-gradient(to bottom, #1f1d1d, #000); /* Example: Gold to Orange gradient */
  background-repeat: no-repeat; /* Prevent the gradient from repeating if content is short */
  color: white;
  text-align: center;
  font-family: Arial, sans-serif;
  margin: 0px;
  padding: 20px;
  overflow-x: hidden;

}

h1 {
  font-size: 28pt;
  margin-bottom: 20px;
}

.videos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin: 20px 0;
  flex-wrap: nowrap; /* Always horizontal */
}

.video-container {
  position: relative;
  background-color: #000;
  border: 1px solid #fff; /* White solid border */
  border-radius: 10px;
  overflow: hidden;
  flex: 1 1 45%; /* Allow responsive resizing */
  max-width: 45%;
  aspect-ratio: 4 / 3; /* Maintain proportion */
}

video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

/* Responsive fit for smaller screens */
@media (max-width: 900px) {
  .videos {
    gap: 10px;
  }

  .video-container {
    flex: 1 1 48%;
    max-width: 48%;
    aspect-ratio: 3 / 2;
  }
}

@media (max-width: 600px) {
  .videos {
    flex-direction: row;
    gap: 5px;
  }

  .video-container {
    flex: 1 1 50%;
    max-width: 50%;
    aspect-ratio: 3 / 2;
  }
}

.name-label {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background: rgba(0, 0, 0, 0.6);
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 14px;
  color: #fff;
}

.camera-icon {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 20px;
  color: white;
  transition: color 0.3s;
}

.camera-off {
  color: red;
}

.buttons {
  margin-top: 20px;
}

button {
  padding: 10px 20px;
  margin: 5px;
  font-size: 14pt;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  background-color: #0066ff;
  color: white;
  transition: background 0.3s;
}

button:hover {
  background-color: #0044cc;
}
