/* Basic styles copied and scoped to .la-ch-container */
.la-ch-container {
    background-color: #eeeeee;
    font-family: sans-serif;
    padding: 10px;
    width: 100%;
    box-sizing: border-box;
}

.la-ch-header {
    display: flex;
    justify-content: space-between;
    font-size: 11px !important;
    font-weight: 500;
    color: #BEBEBE;
    margin-bottom: 10px;
}

.la-ch-btns {
    display: flex;
    gap: 10px;
    align-items: center;
}

.la-ch-btns .ch-active{
    color: #333333;
}

.la-ch-btns span,
.la-ch-run .la-ch-run-btn {
    border-bottom: 3px solid #BEBEBE;
    border-radius: 10px;
    padding: 2px 10px !important;
    line-height: 10px;
}

.la-ch-btns span:hover,
.la-ch-run .la-ch-run-btn:hover {
    color: #333333;
    cursor: pointer;
}

.la-ch-ed-box .CodeMirror {
    background-color: #eeeeee !important;
    font-size: 16px !important;
    line-height: 25px !important;
    min-height: 30px !important;
    padding-bottom: 20px !important;
    height: auto !important;
    font-family: 'Fira Code', monospace !important;
}
.la-ch-ed-box .CodeMirror-code {
margin-bottom: 0px !important;
font-family: 'Fira Code', monospace !important;
text-shadow: 2px 2px 0x white;
}

.la-ch-result{
    background-color: white;
    height: auto;
    width: 100%;
    flex: 1;
}
.la-ch-result .la-ch-iframe{
    width: 100%;
    height: 350px;
}
.showResult {
    width: 100%;
    height: 100%;
    overflow: auto;
}

/* hide textareas (we use CodeMirror) */
.la-ch-textarea {
    display: none;
}
