.estimation-progress {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.estimation-wizard__step-label {
  font-size: 14px;
  font-weight: 600;
}

.estimation-wizard__dots {
  display: flex;
  align-items: center;
  gap: 6px;
}

.estimation-wizard__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.12);
  transition: background 0.3s ease, transform 0.3s ease;
}

.estimation-wizard__dot.is-active {
  background: var(--accent-color-code);
  transform: scale(1.1);
}
