.voiceStatusStrip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
  padding: 10px 12px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 14px;
  background: rgba(15, 23, 42, 0.04);
}

.voiceStatusStrip[data-state="connecting"],
.voiceStatusStrip[data-state="thinking"] {
  background: rgba(14, 116, 144, 0.08);
}

.voiceStatusStrip[data-state="speaking"] {
  background: rgba(14, 165, 233, 0.12);
}

.voiceStatusMain {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.voiceTranscriptPreview {
  display: block;
  max-width: min(72vw, 560px);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.voiceStatusActions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.voiceMicBtnActive {
  border-color: rgba(14, 165, 233, 0.45);
  background: rgba(14, 165, 233, 0.08);
}

.voiceProfileSection select,
.voiceProfileSection input[type="file"],
.voiceProfileSection input[type="text"],
.voiceProfileSection input:not([type]) {
  width: 100%;
}

.voicePickerRow {
  display: flex;
  align-items: stretch;
  gap: 10px;
  flex-wrap: wrap;
}

.voicePickerRow select {
  flex: 1 1 220px;
  min-width: 0;
}

.voicePickerRow button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-width: 148px;
}

@media (max-width: 720px) {
  .voiceStatusStrip {
    flex-direction: column;
    align-items: stretch;
  }

  .voiceStatusActions {
    justify-content: flex-end;
  }

  .voiceTranscriptPreview {
    max-width: 100%;
  }

  .voicePickerRow {
    flex-direction: column;
  }

  .voicePickerRow button {
    width: 100%;
  }
}
