interface ProgressBarProps { value: number; max?: number; showLabel?: boolean; size?: "sm" | "md" | "lg"; className?: string; } const sizeStyles = { sm: "h-1.5", md: "h-2", lg: "h-8", }; export function ProgressBar({ value, max = 100, showLabel = false, size = "md", className = "" }: ProgressBarProps) { const percent = Math.min(100, Math.max(0, (value / max) * 100)); return (