/* Thinking / workflow checklist (shared; hosts add prefix e.g. .fcw-thinking-card) */
.flowbie-thinking-steps,
.fcw-thinking-steps,
.fcwd-thinking-steps {
  list-style: none;
  margin: 12px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.flowbie-thinking-step,
.fcw-thinking-step,
.fcwd-thinking-step {
  display: block;
  font-size: 1rem;
  line-height: 1.5;
  color: rgba(240, 240, 240, 0.8);
}

.flowbie-thinking-step-label,
.fcw-thinking-step-label,
.fcwd-thinking-step-label {
  display: block;
  text-align: left;
}

.flowbie-thinking-step--running .flowbie-thinking-step-label,
.fcw-thinking-step--running .fcw-thinking-step-label,
.fcwd-thinking-step--running .fcwd-thinking-step-label {
  color: #3b82f6;
  font-weight: 600;
  animation: flowbiePhaseBreathe 2s ease-in-out infinite;
}

.flowbie-thinking-step--done .flowbie-thinking-step-label,
.fcw-thinking-step--done .fcw-thinking-step-label,
.fcwd-thinking-step--done .fcwd-thinking-step-label {
  color: rgba(240, 240, 240, 0.55);
}

.flowbie-thinking-step--pending .flowbie-thinking-step-label,
.fcw-thinking-step--pending .fcw-thinking-step-label,
.fcwd-thinking-step--pending .fcwd-thinking-step-label {
  color: rgba(240, 240, 240, 0.45);
}

.flowbie-thinking-step-icon,
.fcw-thinking-step-icon,
.fcwd-thinking-step-icon {
  display: none !important;
}

.flowbie-thinking-card--active,
.fcw-card--thinking-active,
.fcwd-card--thinking-active {
  border-color: rgba(148, 163, 184, 0.35);
}

@keyframes flowbiePhaseBreathe {
  0%,
  100% {
    text-shadow: 0 0 0 rgba(59, 130, 246, 0);
  }
  50% {
    text-shadow: 0 0 16px rgba(59, 130, 246, 0.55);
  }
}
