/* H30: suppress Blazor Server's default reconnect overlay ("Rejoining the server…").
   ccr-blazor-reconnect.js drives the graceful silent-reconnect behaviour; this CSS makes sure
   the framework's modal never flashes even for the frame before the observer hides it. */
#components-reconnect-modal,
#components-reconnect-modal.components-reconnect-show,
#components-reconnect-modal.components-reconnect-retrying,
#components-reconnect-modal.components-reconnect-failed,
#components-reconnect-modal.components-reconnect-rejected,
#components-reconnect-modal[open] {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
}
