/* ============================================
   Modal 統一修復樣式
   Modal Global Fix Styles
   ============================================ */

/* ===== 確保 Modal 在最上層 ===== */
.modal {
    z-index: 1055 !important;
}

.modal-backdrop {
    z-index: 1050 !important;
}

/* ===== Modal 開啟時防止背景滾動 ===== */
body.modal-open {
    overflow: hidden !important;
    padding-right: 0 !important;
}

/* ===== 當 Modal 開啟時，降低所有 iframe 的層級並禁用互動 ===== */
body.modal-open iframe,
body[data-modal-open="true"] iframe {
    pointer-events: none !important;
}

body.modal-open .pdf-embed-container,
body.modal-open .video-wrapper,
body[data-modal-open="true"] .pdf-embed-container,
body[data-modal-open="true"] .video-wrapper {
    z-index: 0 !important;
}

/* ===== Toast 提示在最上層 ===== */
.toast-message {
    z-index: 10100 !important;
}
