/* Text selection fix with maximum specificity */
html body *::selection {
  background-color: #D1FF00 !important;
  color: #000000 !important;
  text-shadow: none !important;
}

html body *::-moz-selection {
  background-color: #D1FF00 !important;
  color: #000000 !important;
  text-shadow: none !important;
}

/* Fix selection in TipTap components */
.ProseMirror *::selection,
.ProseMirror p::selection,
.ProseMirror p span::selection,
[contenteditable=true]::selection,
[contenteditable=true] *::selection {
  background-color: #D1FF00 !important;
  color: #000000 !important;
}

/* Firefox specific */
.ProseMirror *::-moz-selection,
.ProseMirror p::-moz-selection,
.ProseMirror p span::-moz-selection,
[contenteditable=true]::-moz-selection,
[contenteditable=true] *::-moz-selection {
  background-color: #D1FF00 !important;
  color: #000000 !important;
}
