const { useState, useEffect } = React; // ─── Mobile Activity Row ────────────────────────────────────────────────────── function ActivityRow({ act, onUpdate }) { const [realPct, setRealPct] = useState(act.planned - 8); const [qty, setQty] = useState(0); const [hh, setHH] = useState(0); const deviation = realPct - act.planned; const devColor = deviation >= 0 ? C.success : deviation > -10 ? C.warning : C.danger; return (