.speaking-options {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.voice-status {
  color: #557366;
  background: #e5f3e9;
  padding: 7px 10px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
}

.speak {
  border: 1px solid #cfe1d6;
  background: #fff;
  color: #245743;
  border-radius: 20px;
  padding: 4px 8px;
  margin-left: 10px;
}

.speak:hover { background: #dff4e8; }

.mic-status { min-height: 22px; margin-top: 9px; color: #65766e; font-size: 12px; }
.mic.recording { background: #b84d43; color: #fff; animation: mic-pulse 1.2s ease-in-out infinite; }
.mic.transcribing { background: #dfe8e2; color: #557366; cursor: wait; }
@keyframes mic-pulse { 50% { transform: scale(.94); } }
@media (prefers-reduced-motion: reduce) { .mic.recording { animation: none; } }

@media (max-width: 800px) {
  .toolbar { align-items: flex-start; }
  .speaking-options { gap: 10px; }
  .voice-status { width: 100%; }
}
