@import url('https://fonts.googleapis.com/css?family=Lato');

/* Reset & Base */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Lato', sans-serif;
  background: #222;
  color: #eee;
  padding: 20px;
}
h1 {
  text-align: center;
  margin-bottom: 20px;
}
.header {
display: flex;
align-items: center;
justify-content: space-between;
margin-bottom: 20px;

}

.mute-btn {
padding:6px 12px;
border: none;
border-radius: 4px;
background: #0DFF92;
color: #000;
cursor: pointer;
font-weight: bold;
}
/* Layout */
.main-container {
  display: flex;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.video-panel {
  flex: 1;
  background: #333;
  padding: 10px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.videoContainer {
  position: relative;
  width: 640px;
  height: 480px;
}
#remoteVideo,
#overlayCanvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Form Panel */
.form-panel {
  width: 350px;
  background: #2a2a2a;
  padding: 20px;
  border-radius: 8px;
  overflow-y: auto;
  max-height: 80vh;
}

/* Form Groups */
.form-group {
  margin-bottom: 16px;
}
.form-group label {
  display: block;
  font-weight: bold;
  margin-bottom: 6px;
  font-size: 0.95rem;
  color: #ccc;
}

/* Text Inputs */
.form-group input[type="text"] {
  width: 100%;
  padding: 6px 8px;
  border: none;
  border-radius: 4px;
  background: #444;
  color: #eee;
  font-size: 0.9rem;
}

/* Radio List (horizontal layout) */
.radio-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.radio-list li {
  position: relative;
  padding-left: 30px;
  cursor: pointer;
  user-select: none;
  font-size: 0.9rem;
}
.radio-list li input[type="radio"] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}
.radio-list li .check {
  position: absolute;
  top: 0;
  left: 0;
  height: 20px;
  width: 20px;
  background: #444;
  border-radius: 50%;
  border: 2px solid #666;
  transition: border 0.2s;
  pointer-events: none;
}
.radio-list li .check::before {
  content: "";
  position: absolute;
  display: none;
  top: 3px;
  left: 3px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #0DFF92;
}
.radio-list li input:checked ~ .check {
  border-color: #0DFF92;
}
.radio-list li input:checked ~ .check::before {
  display: block;
}
.radio-list li label {
  cursor: pointer;
  color: #ccc;
}
.radio-list li input:checked ~ label {
  color: #0DFF92;
}

/* Buttons */
.button-group {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 10px;
}
.button-group button {
  flex: 1;
  padding: 10px;
  border: none;
  border-radius: 4px;
  font-weight: bold;
  font-size: 0.95rem;
  cursor: pointer;
  background: #0DFF92;
  color: #000;
  transition: background 0.2s;
}
.button-group button:hover {
  background: #0bc47e;
}
.button-group button:disabled {
  background: #555;
  cursor: not-allowed;
}
