.voice-bar {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-top: 1rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 10;
}

.voice-bottom {
  padding: 0 0 2rem;
}

.voice-bottom .voice-bar {
  margin-top: 0;
}

.voice-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
}

.voice-select {
  padding: 0.45rem 0.75rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--surface);
  color: var(--navy);
  font-family: var(--font-ui);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  max-width: 100%;
  min-width: 220px;
  pointer-events: auto;
  appearance: auto;
  -webkit-appearance: menulist;
}

.voice-select:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px var(--red-glow);
}

.voice-select:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

@media (max-width: 720px) {
  .voice-bar {
    flex-direction: column;
    align-items: stretch;
    gap: 0.5rem;
  }

  .voice-select {
    width: 100%;
    min-width: 0;
    min-height: 44px;
    font-size: 16px;
  }
}
