/* Hide the stray blinking text caret while browsing/scrolling. */
html, body,
body *:not(input):not(textarea):not([contenteditable="true"]) {
  caret-color: transparent !important;
}

/* Keep the normal typing cursor inside real form fields. */
input,
textarea,
[contenteditable="true"] {
  caret-color: auto !important;
}
