.recording-status {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
}

.record-dot {
  width: 10px;
  height: 10px;
  background: red;
  border-radius: 50%;
  animation: pulse 1s infinite;
}

.audio-meter {
  width: 100px;
  height: 6px;
  background: #eee;
  border-radius: 3px;
  overflow: hidden;
}

#audioLevel {
  height: 100%;
  width: 0%;
  background: #4caf50;
  transition: width 0.1s linear;
}

@keyframes pulse {
  0% { opacity: 1; }
  50% { opacity: 0.4; }
  100% { opacity: 1; }
}

.hidden {
  display: none;
}
