/* Unified Modal System - Global Styles */

/* Hide navbar when modal requests it */
body.modal-navbar-hidden nav.navbar {
    display: none !important;
    pointer-events: none;
    visibility: hidden;
}

/* Fixed Z-Index Hierarchy */
/* Level 1: Base modals (OSM Selector, Settings, etc.) */
.modal-level-1 {
    z-index: 1050 !important;
}
.modal-level-1 + .modal-backdrop {
    z-index: 1040 !important;
}

/* Level 2: Sub-modals (Edit forms, detail views) */
.modal-level-2 {
    z-index: 1070 !important;
}
.modal-level-2 + .modal-backdrop {
    z-index: 1060 !important;
}

/* Level 3: Confirmation dialogs */
.modal-level-3 {
    z-index: 1090 !important;
}
.modal-level-3 + .modal-backdrop {
    z-index: 1080 !important;
}

/* Ensure all modals block clicks when active */
.modal.show {
    pointer-events: auto;
}

/* Toast messages always on top */
.toast,
.toastr {
    z-index: 9999 !important;
}
