/* Chainlit prefixes every step header with a translated status word
   ("In uso" while running, "Utilizzato" when done) in a <span> before the
   step name. Only the name is wanted: the tool's ui_label is already a full
   phrase. The header carries id="step-<name>" and is a <button> (accordion
   trigger) once the step has lines inside, a <p> while it has none, as the
   idle step before the first tool. That span is its first child either way;
   the shimmer that signals a running step sits on the header itself and
   stays visible. */
button[id^="step-"] > span:first-child,
p[id^="step-"] > span:first-child {
  display: none;
}
