html, body {
    background: rgb(30, 30, 30);
    margin: 0px;
    padding: 0px;
    font-family: monospace, sans-serif;
    font-weight: bold;
    height: 100%;
    width: 100%;
}
#topbar {
    height: 8%;
    width: 100%;
    padding: 8px;
    display: flex;
    row-gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    box-shadow: inset 0 -1px 0 rgb(66, 66, 66);
    box-sizing: border-box;
}
button {
    all: unset;
    box-sizing: border-box;
    background: rgb(66, 66, 66);
    color: rgb(240, 240, 240);
    padding: 2px 8px;
    border-radius: 6px;
    margin-left: 4px;
    text-align: center;
    cursor: pointer;
    display: inline-block;
    font-size: 12px;
}
select {
    all: unset;
    box-sizing: border-box;
    width: 160px;
    background: rgb(66, 66, 66);
    color: rgb(240, 240, 240);
    padding: 2px 8px;
    border-radius: 6px;
    margin-left: 4px;
    text-align: left;
    cursor: pointer;
    display: inline-block;
    font-size: 12px;
    appearance: none;
}
#toaster {
    width: 120px;
    height: 16px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 8px;
    font-size: 14px;
    color: rgb(0, 0, 0);
    border-radius: 8px;
    background-color: rgb(255, 255, 255);
    z-index: 999;
    position: fixed;
    left: 50%;
    top: 11%;
    transform: translate(-50%, -0%);
}
#outer {
    /* display: flex; */
    /* flex-direction: column; */
    /* justify-content: center; */
    align-items: center;
    height: 100%;
}
#editorContainer {
    width: 75%;
    height: 85%;
    margin: auto;
    position: relative;
    outline: 2px solid rgb(116, 116, 116);
}
#editor {
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.ace_tooltip {
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
    border-radius: 4px;
    padding: 5px 10px;
    line-height: 1.2;
    font-size: 10px;
    /* max-width: 300px; */
    /* white-space: normal; */
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}

br {
    display: block;
    margin-bottom: 1em;
}
@media only screen and (max-width: 600px) {
    #editorContainer {
        width: 95%;
    }
    #topbar {
        padding: 8px 2px 8px 2px;
    }
    button {
        font-size: 10px;
        margin-left: 4px;
        padding: 2px 6px;
    }
    select {
        width: 100px;
        font-size: 10px;
    }
}