/* Fix vertical alignment for date/datetime inputs inside kt-input-group */
.kt-input-group input[type="date"],
.kt-input-group input[type="datetime-local"] {
    display: flex;
    align-items: center;
}

/* CKEditor5: larger default height + vertical resize */
.ck.ck-editor {
    display: flex;
    flex-direction: column;
    resize: vertical;
    overflow: hidden;
    min-height: 350px;
}

.ck.ck-editor__main {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.ck.ck-editor__editable_inline {
    flex: 1;
}
