/* ERROR SHIELD - Makes any React error overlay invisible */
[class*="error"],
[class*="Error"],
[id*="error"],
[id*="Error"],
div[style*="z-index: 9999"],
div[style*="position: fixed"][style*="inset: 0"],
div[style*="position:fixed"][style*="inset:0"],
pre,
div:has(> pre),
.overlay,
.error-overlay,
.react-error-overlay,
.__react-error-overlay,
div[role="dialog"]:has-text("Something went wrong"),
div:contains("Node.removeChild"),
div:contains("Error Details") {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    height: 0 !important;
    width: 0 !important;
    position: absolute !important;
    z-index: -99999 !important;
    pointer-events: none !important;
    overflow: hidden !important;
    clip: rect(0,0,0,0) !important;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
}
