.ai-think-card {
  background: var(--bg-panel);
  border: 1px solid rgba(140, 100, 220, 0.35);
  border-radius: 8px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex-shrink: 0;
  margin-bottom: 5px;
}
.ai-think-hdr {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-secondary);
  letter-spacing: 0.03em;
}
.ai-think-badge {
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--p2-color);
  border: 1px solid var(--p2-color);
  border-radius: 8px;
  padding: 1px 6px;
  opacity: 0.85;
}
.ai-think-body {
  background: var(--bg-input);
  border-radius: var(--border-radius);
  padding: 6px 8px;
  display: flex;
  flex-direction: column;
  gap: 3px;
  height: 160px;
  overflow-y: auto;
  scrollbar-gutter: stable;
}
.ai-coord {
  font-size: 0.72rem;
  font-family: monospace;
  opacity: 0.7;
  background: rgba(0,0,0,0.25);
  border-radius: 3px;
  padding: 0 3px;
}
.ai-thought {
  font-size: 0.81rem;
  color: var(--text-muted);
  padding: 2px 6px;
  border-left: 2px solid transparent;
  border-radius: 2px;
  line-height: 1.4;
}
.ai-thought.ai-current {
  color: var(--text-primary);
  border-left-color: var(--p2-color);
  font-weight: 500;
}
.ai-thought.ai-idle {
  font-style: italic;
  opacity: 0.6;
}

.ai-think-seat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.ai-think-seat + .ai-think-seat {
  margin-top: 6px;
  padding-top: 6px;
  border-top: 1px dashed rgba(255, 255, 255, 0.08);
}
.ai-think-seat-hdr {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--text-secondary);
  text-transform: uppercase;
  opacity: 0.85;
  padding-left: 4px;
}
