.document-editor {
    border: 1px solid var(--ck-color-base-border);
    border-radius: var(--ck-border-radius);

    /* Set vertical boundaries for the document editor. */
    max-height: 700px;

    /* This element is a flex container for easier rendering. */
    display: flex;
    flex-flow: column nowrap;
}

.document-editor__toolbar {
    /* Make sure the toolbar container is always above the editable. */
    z-index: 1;

    /* Create the illusion of the toolbar floating over the editable. */
    box-shadow: 0 0 5px hsla(0, 0%, 0%, 0.2);

    /* Use the CKEditor CSS variables to keep the UI consistent. */
    border-bottom: 1px solid var(--ck-color-toolbar-border);
}

/* Adjust the look of the toolbar inside the container. */
.document-editor__toolbar .ck-toolbar {
    border: 0;
    border-radius: 0;
}

/* Make the editable container look like the inside of a native word processor application. */
.document-editor__editable-container {
    padding: calc(2 * var(--ck-spacing-large));
    background: var(--ck-color-base-foreground);

    /* Make it possible to scroll the "page" of the edited content. */
    overflow-y: scroll;
}

.document-editor__editable-container .ck-editor__editable {
    /* Set the dimensions of the "page". */
    width: 15.8cm;
    min-height: 21cm;

    /* Keep the "page" off the boundaries of the container. */
    padding: 1cm 2cm 2cm;

    border: 1px hsl(0, 0%, 82.7%) solid;
    border-radius: var(--ck-border-radius);
    background: white;

    /* The "page" should cast a slight shadow (3D illusion). */
    box-shadow: 0 0 5px hsla(0, 0%, 0%, 0.1);

    /* Center the "page". */
    margin: 0 auto;
}

/* Set the default font for the "page" of the content. */
.document-editor .ck-content,
.document-editor .ck-heading-dropdown .ck-list .ck-button__label {
    font: 16px/1.6 "Helvetica Neue", Helvetica, Arial, sans-serif;
}

/* Adjust the headings dropdown to host some larger heading styles. */
.document-editor .ck-heading-dropdown .ck-list .ck-button__label {
    line-height: calc(
            1.7 * var(--ck-line-height-base) * var(--ck-font-size-base)
    );
    min-width: 6em;
}

/* Scale down all heading previews because they are way too big to be presented in the UI.
  Preserve the relative scale, though. */
.document-editor
.ck-heading-dropdown
.ck-list
.ck-button:not(.ck-heading_paragraph)
.ck-button__label {
    transform: scale(0.8);
    transform-origin: left;
}

.cke_top, .cke_bottom {
    background: #f0f1f5 !important;
}

/* Set the styles for "Heading 1". */
.document-editor .ck-content h2,
.document-editor .ck-heading-dropdown .ck-heading_heading1 .ck-button__label {
    font-size: 2.18em;
    font-weight: normal;
}

.document-editor .ck-content h2 {
    line-height: 1.37em;
    padding-top: 0.342em;
    margin-bottom: 0.142em;
}

/* Set the styles for "Heading 2". */
.document-editor .ck-content h3,
.document-editor .ck-heading-dropdown .ck-heading_heading2 .ck-button__label {
    font-size: 1.75em;
    font-weight: normal;
    color: hsl(203, 100%, 50%);
}

.document-editor
.ck-heading-dropdown
.ck-heading_heading2.ck-on
.ck-button__label {
    color: var(--ck-color-list-button-on-text);
}

/* Set the styles for "Heading 2". */
.document-editor .ck-content h3 {
    line-height: 1.86em;
    padding-top: 0.171em;
    margin-bottom: 0.357em;
}

/* Set the styles for "Heading 3". */
.document-editor .ck-content h4,
.document-editor .ck-heading-dropdown .ck-heading_heading3 .ck-button__label {
    font-size: 1.31em;
    font-weight: bold;
}

.document-editor .ck-content h4 {
    line-height: 1.24em;
    padding-top: 0.286em;
    margin-bottom: 0.952em;
}

/* Set the styles for "Paragraph". */
.document-editor .ck-content p {
    font-size: 1em;
    line-height: 1.63em;
    padding-top: 0.5em;
    margin-bottom: 1.13em;
}

/* Make the block quoted text serif with some additional spacing. */
.document-editor .ck-content blockquote {
    font-family: Georgia, serif;
    margin-left: calc(2 * var(--ck-spacing-large));
    margin-right: calc(2 * var(--ck-spacing-large));
}

.ck.ck-editor__editable:not(.ck-editor__nested-editable).ck-focused {
    border: 1px solid #4abacd !important;
}

.cke_toolbar_break {
    display: none !important;
}

/* Minimal WYSIWYG for headings/titles */
/* Main Doc Page */
#cke_docTitle, #cke_section-input, #cke_heading, #cke_title, #cke_subtitle {
    border: 0 !important;
}

#cke_docTitle .cke_inner, #cke_section-input .cke_inner, #cke_heading .cke_inner, #cke_title .cke_inner, #cke_subtitle .cke_inner {
    background: 0 !important;
}

#cke_docTitle .cke_top, #cke_section-input .cke_top, #cke_heading .cke_top, #cke_title .cke_top, #cke_subtitle .cke_top {
    width: fit-content !important;
    width: -moz-max-content;
    border: 1px solid #d1d1d1 !important;
    border-bottom: 0 !important;
}

#cke_docTitle .cke_toolgroup, #cke_section-input .cke_toolgroup, #cke_heading .cke_toolgroup, #cke_title .cke_toolgroup, #cke_subtitle .cke_toolgroup {
    margin-right: 0;
    padding-right: 0;
}

#cke_docTitle .cke_toolgroup a.cke_button:last-child:after, #cke_section-input .cke_toolgroup a.cke_button:last-child:after, #cke_heading .cke_toolgroup a.cke_button:last-child:after, #cke_title .cke_toolgroup a.cke_button:last-child:after, #cke_subtitle .cke_toolgroup a.cke_button:last-child:after {
    display: none;
}

#cke_docTitle .cke_contents, #cke_section-input .cke_contents, #cke_heading .cke_contents, #cke_title .cke_contents, #cke_subtitle .cke_contents {
    height: 50px !important;
    border: 1px solid #cccdcf;
}

#cke_docTitle .cke_bottom, #cke_section-input .cke_bottom, #cke_heading .cke_bottom, #cke_title .cke_bottom, #cke_subtitle .cke_bottom {
    display: none;
}

.cke_editable {
    color: #3e4958 !important;
    margin: 1rem !important;
    font-size: 14px !important;
    line-height: 1.5 !important;
    font-family: 'Roboto-Regular', sans-serif !important;
    font-weight: 400 !important;
}

select.cke_dialog_ui_input_select {
    display: block !important;
}

.cke_editable a {
    color: #007bff;
}