/* ═══════════════════════════════════════════════════════════════
   voice-picker.css — Settings → ADA → voice picker UI.
   Lives inside the .mb-section-ada section, beneath the icon scale.
   ═══════════════════════════════════════════════════════════════ */

.voice-picker-row {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-top: 8px;
}
#voicePickerSelect {
  flex: 1;
  min-width: 0;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  font-family: var(--f-sans);
  font-size: 0.88rem;
}
#voicePickerSelect:focus {
  outline: 1px solid var(--amber);
  border-color: var(--amber);
}
#voicePickerTest {
  flex-shrink: 0;
  min-height: 40px;
  padding: 8px 14px;
  border: 1px solid rgba(232, 163, 61, 0.55);
  background: rgba(232, 163, 61, 0.10);
  color: var(--amber);
  border-radius: 10px;
  font-family: var(--f-sans);
  font-weight: 700;
  font-size: 0.88rem;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition: background 0.15s, border-color 0.15s;
}
#voicePickerTest:hover,
#voicePickerTest:focus-visible {
  background: rgba(232, 163, 61, 0.22);
  border-color: var(--amber);
  outline: none;
}

#voicePickerStatus {
  font-size: 0.74rem;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 6px;
  line-height: 1.4;
}

.light-mode #voicePickerSelect {
  background: #f7f7fb;
  border-color: rgba(0, 0, 0, 0.15);
  color: #18121b;
}
.light-mode #voicePickerStatus { color: rgba(0, 0, 0, 0.55); }
