/* Custom CSS for Filament modals to appear above file upload components */

/* Increase z-index for modal overlay and container */
.fi-modal-close-overlay {
    z-index: 9999 !important;
}

.fi-modal .fixed.inset-0.z-40 {
    z-index: 9999 !important;
}

/* Ensure modal window is above everything */
.fi-modal-window {
    z-index: 10000 !important;
}

/* Also increase sticky header and footer z-index */
.fi-sticky {
    z-index: 10001 !important;
}

/* For any other modal elements that might need higher z-index */
[x-data*="isOpen"] .fi-modal-window {
    z-index: 10000 !important;
}
