body {
  font-family: system-ui, sans-serif;
  background: #111;
  color: #eee;
  text-align: center;
  padding: 2rem 2rem 6rem;
}

.videos {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 1rem;
  flex-wrap: wrap;
}

video {
  width: min(45vw, 480px);
  background: #000;
  border-radius: 8px;
}

.call-controls {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  padding: 1.5rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
}

#disconnect {
  background: #d92d2d;
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 0.75rem 2.5rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
}

#disconnect:hover {
  background: #b81f1f;
}
