/* Aggressive Microsoft Editor disabling */

/* Disable Microsoft Editor on all elements */
* {
  -ms-editor: false !important;
  -ms-spellcheck: false !important;
  spellcheck: false !important;
  data-ms-editor: false !important;
  -webkit-spellcheck: false !important;
  autocorrect: off !important;
  autocomplete: off !important;
  autocapitalize: off !important;
  aria-autocomplete: none !important;
}

/* Completely hide Microsoft Editor elements */
div[class*="ms-editor"],
div[id*="ms-editor"],
.ms-editor-squiggler,
.ms-editor-contextmenu,
.ms-editor-panel,
.ms-editor-popup,
.ms-editor-suggestion,
.ms-editor-synonyms,
.ms-editor-grammar,
.ms-editor-spelling,
.ms-editor-refinement,
.ms-editor-inclusivity,
.ms-editor-clarity,
.ms-editor-formality,
.ms-editor-conciseness,
.ms-editor-vocabulary,
.ms-editor-punctuation,
.ms-editor-fluency,
.ms-editor-confidence,
[class*="ms-editor"],
[id*="ms-editor"] {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
  position: absolute !important;
  z-index: -9999 !important;
  width: 0 !important;
  height: 0 !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  clip-path: inset(50%) !important;
  margin: -1px !important;
  padding: 0 !important;
  border: 0 !important;
}

/* Specifically target input elements and any remaining contentEditable elements */
[contenteditable="true"],
[contenteditable="true"] *,
input,
input * {
  -ms-editor: false !important;
  -ms-spellcheck: false !important;
  spellcheck: false !important;
  data-ms-editor: false !important;
  -webkit-spellcheck: false !important;
  autocorrect: off !important;
  autocomplete: off !important;
  autocapitalize: off !important;
  aria-autocomplete: none !important;
}

/* Disable Microsoft Editor on input and textarea elements */
input, textarea {
  -ms-editor: false !important;
  -ms-spellcheck: false !important;
  spellcheck: false !important;
  data-ms-editor: false !important;
  -webkit-spellcheck: false !important;
  autocorrect: off !important;
  autocomplete: off !important;
  autocapitalize: off !important;
  aria-autocomplete: none !important;
}

/* Disable Microsoft Editor on document */
html, body {
  -ms-editor: false !important;
  -ms-spellcheck: false !important;
  spellcheck: false !important;
  data-ms-editor: false !important;
  -webkit-spellcheck: false !important;
  autocorrect: off !important;
  autocomplete: off !important;
  autocapitalize: off !important;
  aria-autocomplete: none !important;
}
