/* Bloquer tous les éléments de notification potentiels */
[id^="nx-alert-"],
[id="extension-host"],
[id^="nx-frame-"] {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    width: 0 !important;
    height: 0 !important;
    max-width: 0 !important;
    max-height: 0 !important;
    overflow: hidden !important;
    position: absolute !important;
    top: -9999px !important;
    left: -9999px !important;
    z-index: -9999 !important;
    pointer-events: none !important;
}

/* Empêcher l'affichage de toute popup en position fixe */
body > div[style*="position: fixed"][style*="z-index: 2147483647"] {
    display: none !important;
    visibility: hidden !important;
}