article#LawDocument {
    font-family: 'Times New Roman', Times, serif;
}

button#SubmitQuerryButton.disabled {
    background-color: red;
}

article#InputArticle {

    textarea#JSONSamplePre {
        width: 100%;
        resize: vertical;
        font-size: 1rem;
    }
}

div#EditInputs {
    display: flex;
    flex-direction: column;

    input, textarea {
        font-family: 'Times New Roman', Times, serif;
        font-size: 1.25rem;
        margin-top: 1em;
        outline: none;
        border: none;
        box-sizing: border-box;
        border-left: 2px solid black;
        padding-left: 1em;

        &.new-text {
            margin-left: 2em;
            font-size: 1rem;
            margin-top: 0;
        }

        &.wrong {
            background-color: red;
            color: white;
        }
    }

    textarea {
        resize: vertical;
        font-size: 1rem;
    }
}