fix(page): anchor load-error overlay to center-column so Cmd+L surfaces navbar without window growth
Pre-fix the overlay was position:fixed at z-index 9998 anchored to the
viewport, so on Cmd+L the navbar (z:100) got .visible in the DOM but was
hidden behind the overlay, and the dark overlay stretched to fill show()'s
panel-overhang window expansion — user perceived 'address bar didn't open'
and 'window maximized'. Overlay now appends to .center-column with
position:absolute inset:0 z-index:25, so it sits below navbar and stays
sized to the webview container regardless of window growth.
Adds tests/desktop/cmdl-on-error-page.spec.ts pinning the symptom: open
page-host on an unresolvable URL, wait for error overlay, sendInputEvent
Cmd+L into the page-host webContents, assert (a) webview width unchanged,
(b) overlay width = center-column width < document width, (c) body not
maximized, (d) navbar visible, (e) navbar z > overlay z.
Tasks: adds two follow-ups to docs/tasks.md (Playwright coverage for
IZUI transient-on-blur and for the slides feature).