button {
  padding: 8px 12px;
  font-size: 14px;
  cursor: pointer;
  border: none;
  border-radius: 4px;
  background-color: #007bff;
  color: white;
  transition: background-color 0.3s ease;
}
button:hover {
  background-color: #0056b3;
}
button:disabled {
  background-color: #ccc;
  cursor: not-allowed;
}
input {
  padding: 8px;
  font-size: 14px;
  border: 1px solid #ccc;
  border-radius: 4px;
  width: 200px;
}
input:focus {
  outline: none;
  border-color: #007bff;
  box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
}
.videoContainer {
  display: grid;
  grid-template-areas: 'video';
  position: relative;
  width: fit-content;
  margin: 20px 0;
}
.localVideo {
  grid-area: video;
  max-width: 100%;
  margin: auto 0 0 auto;
  border: 1px solid #ccc;
  border-radius: 4px;
  background-color: floralwhite;
  overflow: hidden;
  transition: all 0.3s ease;
}
.localVideo.small {
  max-width: 40%;
  max-height: 40%;
}
.remoteVideo {
  grid-area: video;
  max-width: 100%;
  border: 1px solid #ccc;
  background-color: floralwhite;
  border-radius: 4px;
  overflow: hidden;
}
.callContactForm {
  margin: 20px 0;
  display: flex;
  gap: 10px;
}
.controls {
  display: flex;
  gap: 10px;
  margin: 20px 0;
}
