interface SimulationLoadingOverlayProps { status: 'PENDING' | 'RUNNING'; progress?: number; } const SimulationLoadingOverlay = ({ status, progress }: SimulationLoadingOverlayProps) => { const displayProgress = progress ?? 0; const statusText = status === 'PENDING' ? '모델 초기화 중...' : '입자 추적 계산 중...'; return (