/* Hide the Authelia "Powered by" footer.
   Multiple fallback selectors for robustness across MUI/Authelia versions. */

/* 1. Any external link (target=_blank). Login page has no other expected external links. */
a[target="_blank"] {
    display: none !important;
    visibility: hidden !important;
}

/* 2. MUI Link with target blank (more specific) */
a.MuiLink-root[target="_blank"] {
    display: none !important;
}

/* 3. Hide parent Grid item if browser supports :has() */
.MuiGrid-item:has(> a[target="_blank"]) {
    display: none !important;
}
.MuiGrid-container:has(> .MuiGrid-item > a[target="_blank"]) {
    display: none !important;
}
