html {
    font-family: monospace;
}

#container-1 {
    display: flex;
    flex-direction: column;
}

#editor-container {
    display: flex;
    flex-direction: row;
}

#canvas {
    width: 80vh;
    height: 80vh;

    border: 1px solid lightgray;
}

#params-container {
    display: flex;
    flex-direction: column;
    
    border: 1px solid lightgray;
    width: 25vw;
}

#params {
    display: flex;
    flex-direction: column;

    margin: 10px;
}

.category-label {
    font-family: monospace;
}

.param-line {
    display: flex;
    flex-direction: row;
}

#increment-3 {
    margin-left: 10px;
}

.increment-button {
    font-family: monospace;
}

.coeff-input {
    width: 15vw;

    margin-left: auto;
    margin-right: 0;

    font-family: monospace;
}

.coeff-label {
    font-family: monospace;
}

.add-button {
    margin-right: 0;
}

.sub-button {
    margin-right: 0;
}

.action-button {
    font-family: monospace;
}

#info-container {
    display: flex;
    flex-direction: column;
    
    border: 1px solid lightgray;
    width: 30vw;
}

#info {
    display: flex;
    flex-direction: column;

    margin: 10px;
}

#code-container {
    display: flex;
    flex-direction: column;
    
    border: 1px solid lightgray;
    width: calc(80vh);
}

#code-loader {
    display: flex;
    flex-direction: column;

    margin: 10px;
}

.code-line {
    display: flex;
    flex-direction: row;
}

.code-button {
    margin-left: auto;
    margin-right: 0;

    width: 10vw;
}

#code-display {
    width: 20vw;
    word-wrap: break-word;
}

#code-input {
    width: 20vw;
}

.pass-count-input {
    width: 6vw;

    margin-left: auto;
    margin-right: 0;

    font-family: monospace;
}

#res-3 {
    margin-left: 10px;
}

#copyright {
    position: absolute;
    bottom: 10px;
}