/* HTMLEditor component styling - required by Components/Shared/HtmlEditor.razor */

/* Compact editor (simple mode) */
.html-editor {
    display: block;
    width: 100%;
    min-height: 160px;
    border: 1px solid #ccc;
    border-radius: 3px;
    padding: 0;
    margin: 0;
}

/* Full-featured editor (complex mode) */
.html-editor-full {
    display: block;
    width: 100%;
    min-height: 280px;
    border: 1px solid #ccc;
    border-radius: 3px;
    padding: 0;
    margin: 0;
}

/* Disabled state visual feedback - subtle opacity hint */
.html-editor[aria-disabled="true"],
.html-editor-full[aria-disabled="true"] {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Ensure the Quill editor container fills the parent */
.html-editor .ql-container,
.html-editor-full .ql-container {
    font-family: inherit;
}

/* Match Quill snow theme border style */
.html-editor .ql-toolbar,
.html-editor-full .ql-toolbar {
    border-color: #ccc;
}

.html-editor .ql-container,
.html-editor-full .ql-container {
    border-color: #ccc;
}
