/* Modal Portal - Forces modals to render at page level above all components */
/* This ensures modals opened from within offcanvas or other stacking contexts display correctly */

.modal-portal-wrapper {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    z-index: 10000 !important; /* Higher than Bootstrap offcanvas (1045) */
    pointer-events: none !important; /* Allow clicks through wrapper */
}

.modal-portal-wrapper .modal {
    pointer-events: auto !important; /* Re-enable clicks on modal itself */
}

.modal-portal-wrapper .modal-dialog {
    z-index: 10001 !important;
}
