/*
 * django-hijack notification banner sits at the bottom of every page during
 * a hijacked session. The package's default rule sets z-index: 300 on the
 * `.djhj` wrapper, which is below Bootstrap 5 modals (1055), modal backdrops
 * (1050) and toasts (1090). When an admin opens a modal while impersonating,
 * the "stop impersonating" control gets occluded — lift it above so it's
 * always reachable.
 *
 * Selectors authored against django-hijack 3.7
 * (templates/hijack/notification.html: <div class="djhj" id="djhj">).
 * If a future release renames the wrapper class or id, update this rule.
 */
.djhj,
#djhj {
    z-index: 1100 !important;
}
