.step-indicator {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 14px;
}

.step-active {
  background-color: var(--color-accent);
  color: white;
}

.step-completed {
  background-color: var(--color-main);
  color: white;
}

.step-inactive {
  background-color: #e5e7eb;
  color: #9ca3af;
}
