/*
 * Hide the blinking text caret on non-editable page content.
 * Real form/editing controls keep their normal caret so typing is unaffected.
 */
body,
body * {
    caret-color: transparent !important;
}

input,
textarea,
select,
[contenteditable=""],
[contenteditable="true"],
[contenteditable="plaintext-only"] {
    caret-color: auto !important;
}
