 {
}

#console-container {
    display: flex;
    flex-direction: column;
    gap: 6px;
    background-color: #444;
    border-radius: 1rem;
    border-color: #333;
    border-style: solid;
    width: 80%;
    padding: 8px;
}

#console {
    display: flex;
    flex-direction: column;
    gap: 4px;
    background-color: #333;
    border-radius: 1rem;
    border-style: solid;
    border-color: #222;
    margin: 0;
    width: calc(100% - 16px);
    height: 30vh;
    max-height: 30vh;
    padding: 8px;
    overflow-y: scroll;
    scroll-behavior: smooth;
}

#console span {
    white-space: pre-line;
}

section {
    display: flex;
    flex-direction: columns;
    gap: 1ch;
}

section p {
    margin: 0;
    color: #eecc77;
    font-weight: 800;
    font-size: 0.75rem;
}

section span {
    color: #bbb;
    font-size: 0.75rem;
}

.output {
    background: #222;
    margin-left: 8px;
    margin-right: 8px;
    font-size: 0.75rem;
}

.return {
    color: #aaa;
}

.error {
    color: #923;
    font-weight: bolder;
}

#console-controls {
    display: flex;
    gap: 8px;
}

textarea {
    display: inline-block;
    flex-grow: 1;
    height: 1rem;
    margin-left: 5px;
    margin-right: 5px;
    overflow: auto;
    max-height: 30vh;
    min-height: 1rem;
    font-size: 0.75rem;
    white-space: nowrap;
}
