/* DEditor — container styling (global; namespaced under .deditor).
   HugeRTE ships its own skin CSS from /assets/libs/hugerte/skins; this file
   only handles the wrapper and the pre-init textarea state. */
.deditor {
    width: 100%;
}

/* Hide the raw <textarea> until HugeRTE replaces it, so there is no flash of an
   unstyled textarea on first render. HugeRTE removes the textarea from layout
   once initialized. */
.deditor .deditor-textarea {
    width: 100%;
    min-height: 120px;
    visibility: hidden;
}

/* Make the editor chrome sit flush inside Bootstrap cards used across the app. */
.deditor .tox-tinymce {
    border-radius: 0.5rem;
    border-color: var(--default-border, #e9edf6);
}
