body {
  font-family: 'Lato', sans-serif;
  background: #222;
  color: #eee;
  margin: 0;
  padding: 20px;
}
h1 {
  text-align: center;
  margin-bottom: 20px;
}
.main-container {
  display: flex;
  gap: 20px;
  justify-content: center;
}
.video-panel {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #333;
  padding: 10px;
  border-radius: 8px;
}
#videoContainer {
  position: relative;
  width: 640px;
  height: 480px;
  background: black;
  border-radius: 4px;
  overflow: hidden;
}
#localVideo {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
#overlayCanvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}
#verificationIndicator {
  position: absolute;
  bottom: 10px;
  right: 10px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: gray;
  border: 2px solid #fff;
  box-sizing: border-box;
  cursor: default;
}
.controls {
  margin-top: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.controls input {
  padding: 8px;
  border-radius: 4px;
  border: none;
}
.controls button {
  padding: 8px 16px;
  border: none;
  border-radius: 4px;
  background: #0DFF92;
  color: #000;
  font-weight: bold;
  cursor: pointer;
}
.controls button:disabled {
  background: #555;
  cursor: not-allowed;
}
.tags-panel {
  width: 300px;
  background: #000;
  padding: 10px;
  border-radius: 4px;
  color: #0DFF92;
}
.tags-panel h2 {
  margin-top: 0;
  text-align: center;
}
#tagDisplay {
  white-space: pre-wrap;
  word-wrap: break-word;
  background: #111;
  padding: 10px;
  border-radius: 4px;
  height: 480px;
  overflow-y: auto;
}