.lms-progress-bar {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.lms-progress-bar__track {
  flex: 1;
  height: 8px;
  background: var(--color-border);
  border-radius: var(--radius);
  overflow: hidden;
}

.lms-progress-bar__fill {
  height: 100%;
  background: var(--color-success);
  border-radius: var(--radius);
  transition: width 0.4s var(--ease);
  min-width: 0;
}

.lms-progress-bar__label {
  font-size: var(--fs-sm);
  font-weight: var(--font-weight-medium);
  color: var(--color-muted-foreground);
  white-space: nowrap;
  min-width: 3ch;
  text-align: right;
}
