/**
 * Step Counter Utility
 * Used for numbered step indicators in documentation/tutorials
 */
.step {
  counter-increment: step;
}

.step:before {
  position: absolute;
  width: 2.25rem;
  height: 2.25rem;
  background-color: var(--muted);
  border-radius: 9999px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-weight: 500;
  text-align: center;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-indent: -1px;
  border: 4px solid var(--background);
  content: counter(step);
}
