.assistant-panel {
  display: grid;
  gap: 10px;
}

.assistant-bubble {
  min-height: 104px;
}

.assistant-kicker {
  display: block;
  margin-bottom: 6px;
  color: #0891b2;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.assistant-transcript {
  margin: 8px 0 0;
  color: #475569;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.5;
}

.assistant-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.assistant-control {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  border: 1px solid rgba(125, 211, 252, 0.85);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: #0f172a;
  padding: 0 18px;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.08);
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.assistant-control:hover {
  transform: translateY(-2px);
  border-color: rgba(251, 113, 133, 0.55);
  background: #ffffff;
}

.assistant-control.start {
  background: linear-gradient(90deg, #0f172a, #047857);
  color: #ffffff;
}

.assistant-control.stop {
  color: #be123c;
}

.assistant-control:disabled {
  cursor: not-allowed;
  opacity: 0.55;
  transform: none;
}

.assistant-status {
  min-height: 18px;
  color: #64748b;
  font-size: 12px;
  font-weight: 700;
}

.assistant-status.listening {
  color: #047857;
}

.assistant-status.error {
  color: #be123c;
}

@media (max-width: 900px) {
  .assistant-panel,
  .assistant-bubble {
    width: min(100%, 360px);
  }
}
