When using View Transitions, the page becomes unresponsive to clicks due to the `::view-transition` pseudo element capturing all clicks. To solve this, disable pointer events on this pseudo element with `pointer-events: none;` in CSS. Additionally, prevent the `:root` element from being captured in the View Transition to ensure snapshots don't interfere with hit testing.
Sort: