
#editor {
    overflow: hidden;
    height: 100%;
    font-size: 1.6rem;
    line-height: 1.5;
}

#tabs {
    display: grid;
    grid-template-rows: 45px 1fr;
}

#tab-buttons {
    display: flex;
    background: #161a23;
    border-bottom: 1px solid #2a2d3a;
}

#tab-buttons button {
    padding: 6px 10px;
    border: none;
    background: transparent;
    color: #ccc;
    cursor: pointer;
}

#tab-buttons button.active {
    background: #2f3446;
    color: #fff;
}

.tab {
    flex: 1;
    display: none;
    padding: 8px;
    font-family: monospace;
    background: #0f1117;
    color: #ddd;
    white-space: pre;
}

.tab.active {
    display: block;
}

#tab-body {
    display: grid;
    overflow: scroll;
}