/* Voice Selector Component Styles */
.voice-selector {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(0, 255, 255, 0.25);
  border-radius: 8px;
}

.voice-selector label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  white-space: nowrap;
}

.voice-dropdown {
  padding: 6px 12px;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(0, 255, 255, 0.3);
  border-radius: 6px;
  color: #fff;
  font-size: 0.9rem;
  min-width: 200px;
  cursor: pointer;
}

.voice-dropdown:focus {
  outline: none;
  border-color: #00ffff;
  box-shadow: 0 0 8px rgba(0, 255, 255, 0.3);
}

.voice-badge {
  padding: 4px 10px;
  background: linear-gradient(135deg, rgba(0, 255, 255, 0.2), rgba(255, 0, 255, 0.2));
  border: 1px solid rgba(0, 255, 255, 0.4);
  border-radius: 12px;
  font-size: 0.85rem;
  color: #00ffff;
  font-weight: 500;
}
