/* ==========================================================
   Progress Bar Component
   ========================================================== */

.progress-bar {
  width: 100%;
  height: 8px;
  background: var(--tg-theme-secondary-bg-color);
  border-radius: var(--radius-full);
  overflow: hidden;
}

.progress-bar-fill {
  height: 100%;
  background: var(--tg-theme-button-color);
  border-radius: var(--radius-full);
  transition: width var(--transition-normal);
  min-width: 0;
}

/* Completed state */
.progress-bar-fill.completed {
  background: var(--tg-theme-accent-text-color);
}

/* Labeled progress (inline label + bar) */
.progress-labeled {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.progress-labeled .progress-bar {
  flex: 1;
}

.progress-text {
  font-size: var(--font-sm);
  color: var(--tg-theme-hint-color);
  white-space: nowrap;
}
