html {
    width: 100%;
    height: 100%;
}

body {
    width: 100%;
    height: 100%;
    margin: 0;
}

pre>span.str {
    color: rgb(206, 85, 64);
}

.fileInput {
    padding: 4px;
    appearance: button;
    font-family: system-ui;
    color: buttontext;
    cursor: default;
    font-size: 12px;
}

.fileInput:hover {
    cursor: pointer;
}

.fileInput>input {
    display: none;
}

.consoleContainer {
    height: 300px;
    background-color: aliceblue;
    padding: 8px;
    border-radius: 6px;
    border: solid 1px lightgrey;
    overflow: auto;
}

.flashcard {
    width: 300px;
    height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    display: block;
    text-align: center;
}

textarea,
#jsonOutput {
    height: 300px;
    overflow: auto;
    width: 100%;
    font-size: 12px;
    font-family: monospace;
    white-space: pre-wrap;
    word-wrap: break-word;
    letter-spacing: normal;
    display: inline-block;
    text-align: start;
}

#jsonOutput {
    visibility: hidden;
}

textarea {
    height: 300px;
    border: none;
    background-color: transparent;
    color: black;
    position: absolute;
    font-size: 12px;
    font-family: monospace;
    top: 0;
    left: 0;
}

.unity {
    position: relative;
}

.hstack {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: row;
}

.hstack>div {
    width: 100%;
}

.left {
    background-color: whitesmoke;
    padding: 8px;
    max-width: 800px;
}

.right {
    border-left: solid 1px lightgray;
    background: linear-gradient(to bottom, rgb(49, 46, 53), rgb(66, 68, 75));
    display: flex;
    justify-content: center;
    align-items: center;
}

.right>iframe {
    width: calc(100% - 16px);
    aspect-ratio: 0.707;
    border: none;
    border-radius: 4px;
    box-shadow: 3px 3px 5px 0px rgba(0, 0, 0, 0.02);
    background-color: white;
}