export function formatSize(bytes: number | null | undefined): string { if (!bytes) return '' const mb = bytes / (1024 * 1024) return mb >= 1 ? `${mb.toFixed(1)} MB` : `${(bytes / 1024).toFixed(0)} KB` }