/* Progress Tracking Styles */

/* Hub page module progress bar */
.module-progress {
  margin: 0.75rem 0;
}

.module-progress-bar {
  width: 100%;
  height: 6px;
  background: var(--bg-primary);
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 0.35rem;
}

.module-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--status-success), var(--status-success-text));
  border-radius: 3px;
  transition: width 0.5s ease;
  min-width: 0;
}

.module-progress-text {
  font-size: 0.75rem;
  color: var(--text-muted);
}
