/* src/style.css */
.videoView {
  display: flex;
  flex-direction: column;
}

html, body {
  color: #fff;
  background-color: #000;
  margin: 0;
  padding: 0;
  font-family: Inter, sans-serif;
}

.overlay {
  position: absolute;
  color: #fff;
  backdrop-filter: blur(4px);
  z-index: 1000;
  background: #000000b3;
  border-radius: 8px;
  padding: 12px;
  font-family: Inter, sans-serif;
  font-size: 14px;
  line-height: 1.5;
  box-shadow: 0 4px 8px #0003;
}

.overlay-right {
  top: 20px;
  right: 20px;
}

.overlay-left {
  top: 20px;
  left: 20px;
}

.overlay-waveform {
  background: #000000b3;
  border-radius: 6px;
  padding: 10px;
}

.text-blue {
  color: #7af;
}

.text-orange {
  color: #fa0;
}
