.sweep-progress {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.sweep-progress[hidden] {
  display: none;
}

.sweep-progress__track {
  flex: 1;
  height: 0.5rem;
  border-radius: 999px;
  background: var(--color-gray-20);
  overflow: hidden;
}

.sweep-progress__fill {
  height: 100%;
  width: 0;
  border-radius: 999px;
  background: var(--color-primary);
  transition: width 0.4s ease;
}

.sweep-progress__label {
  font-size: 0.85rem;
  color: var(--color-text-secondary);
  white-space: nowrap;
}
