/* ==========================================
   DIALOG Z-INDEX FIX
   MudDialogProvider is inside MudLayout,
   so we only need to ensure the overlay
   and dialog sit above the fixed AppBar.
   ========================================== */

/* MudAppBar renders with position:fixed and z-index:1100 by default.
   The dialog overlay must beat that value. */
header.mud-appbar {
    z-index: 1100 !important;
}

/* The dark scrim that covers the page */
.mud-overlay {
    z-index: 1300 !important;
}

/* The dialog container and dialog itself */
.mud-dialog-container {
    z-index: 1400 !important;
}

/* Popovers inside dialogs (MudSelect, MudAutocomplete, MudDatePicker) */
.mud-popover {
    z-index: 1500 !important;
}

/* Snackbar above everything */
.mud-snackbar-provider {
    z-index: 9999 !important;
}