/* conditional_flow.css — if/elif/else rows; the one that runs is green, False rows red,
   unreached rows dim. */
.cf-row { fill: rgba(255, 255, 255, 0.03); stroke: rgba(148, 163, 184, 0.28); stroke-width: 1.2; }
.cf-row.cf-run { fill: rgba(52, 211, 153, 0.18); stroke: #34d399; stroke-width: 1.8; }
.cf-row.cf-false { fill: rgba(244, 63, 94, 0.1); stroke: rgba(244, 63, 94, 0.5); }
.cf-row.cf-skip { fill: rgba(255, 255, 255, 0.02); stroke: rgba(148, 163, 184, 0.18); }
.cf-kw { fill: #a9c0e2; font-size: 13px; font-weight: 700; font-family: ui-monospace, Menlo, Consolas, monospace; }
.cf-cond { fill: #dbe4ef; font-size: 13px; font-family: ui-monospace, Menlo, Consolas, monospace; }
.cf-verdict { fill: #94a3b8; font-size: 11px; font-weight: 700; }
.cf-verdict.cf-run { fill: #6ee7b7; }
.cf-verdict.cf-false { fill: #fca5b4; }
.cf-verdict.cf-skip { fill: #64748b; }
