/* =========================================================
   ForumX R32 — Preview Modal Fix
   The global link-dialog reliability rule raises the modal
   backdrop to z-index 2147483000. The message/thread preview
   used the older 100301 layer and was therefore rendered
   behind the backdrop. Keep the backdrop below the preview.
   ========================================================= */

html.forumx-xf-modal-open .forumx-xf-modal-backdrop,
.forumx-xf-modal-backdrop {
    z-index: 2147483000 !important;
}

html.forumx-xf-modal-open .forumx-xf-preview,
.forumx-xf-preview {
    z-index: 2147483002 !important;
    pointer-events: auto !important;
    isolation: isolate;
}

.forumx-xf-preview > header,
.forumx-xf-preview-body,
.forumx-xf-preview > header button {
    pointer-events: auto !important;
}
