.i-markdowneditor {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    border: 1px solid #ccc;
    border-radius: 4px;
    overflow: hidden;
}

.i-markdowneditor-input {
    width: 100%;
    border: 0;
    flex-grow: 1;
    resize: none;
    background-color: #333;
    padding: 8px;
    color: white;
    font-family: monospace;
}

.i-markdowneditor-toolbar {
    display: flex;
}

.i-markdowneditor-label {
    min-width: 150px;
    max-width: 150px;
    background-color: #f4f4f4;
    font-weight: bold;
    display: flex;
    color: #555555;
    align-items: center;
    padding-left: 4px;
    border-right: 0;
    min-height: 23px;
    max-height: 23px;
    border-right: 1px solid #ccc;
}

.a-markeditoreditor-button {
    border: 0;
    border-right: 1px solid #ccc;
    background-color: white;
}

.a-markeditoreditor-button:hover {
    background-color: #eee;
}


.i-markdownpreview pre {
    all: unset;
    margin-bottom: 16px;
    display: block;
    white-space: pre;
}

.i-markdownpreview {
    padding: 8px 16px;
    border-radius: 4px;
    border: 1px solid #ccc;
    flex-grow: 1;
    overflow-y: auto;
    background-color: #F2F2F2;
    
    h1, h2, h3, h4, h5 {
        color: #222;
        font-weight: bold;
        padding-top: 6px;
        padding-bottom: 6px;
        margin-top: 6px;
        margin-bottom: 6px;
    }
    
    h1 {
        font-size: 2.5em;
    }
    
    h2 {
        font-size: 2.2em;
    }
    
    h3 {
        font-size: 1.9em;
    }
    
    h4 {
        font-size: 1.6em;
    }
    
    h5 {
        font-size: 1.3em;
    }
}