* {
    font-family: "Bahnschrift", serif;
}

body {
    display: flex;
    justify-content: space-between;
    margin: 0;
    padding: 0;
    height: 100vh;
    width: 100vw;
}
#generator {
    background: #9d9d9d;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 30vw;
    overflow-x: hidden;
    overflow-y: auto;
    max-height: 100vh;
    padding: 0 2vmin 2vmin;
    user-select: none;
}
#generator > * {
    width: 100%;
}

label {
    font-weight: bolder;
    white-space: nowrap;
}
input, select {
    width: 100%;
    height: 30px;
    outline: none;
    border: gray 1px solid;
    border-radius: 5px;
    padding: 5px;
    box-sizing: border-box;
    font-size: 14px;
    user-select: unset;
}

textarea {
    width: 100%;
    resize: vertical;
    height: 50px;
    outline: none;
    border: gray 1px solid;
    border-radius: 5px;
    padding: 5px;
    box-sizing: border-box;
    font-size: 10px;
    user-select: unset;
}

input[type="checkbox"] {
    min-width: 40px;
}

.displayInRow {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
}


._prefixed {
    position: relative;
}

h3 {
    margin-bottom: 1vmin;
}

._prefixed input {
    padding-left: 71px;
}

._prefixed::after {
    content: "rpg-mithd:";
    position: absolute;
    left: 5px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 14px;
    font-weight: normal;
}

.criteria, .reward {
    background: #cccccc;
    margin-bottom: 1vmin;
    border: gray 1px solid;
    padding: 5px;
}

#jsons {
    display: flex;
    flex-direction: column;
    width: 40vw;
    height: 100vh;
}

#jsons h2 {
    margin: 5px;
    height: 3%;
    text-align: center;
}

#questJson, #langJson {
    background: #333333;
    width: 100%;
    height: 47%;
}
