#main-div {
    width: 250px;
    position: relative;
    left: 0; right: 0;
}

.content-div {
    text-align: center;
    margin: auto;
}

#result-tooltip {
    display: none;
    text-align: center;
}

.result {
    max-height: 60px;
    max-width: 500px;
    margin-left: auto; margin-right: auto;
    left: 0; right: 0;
    overflow-x: scroll;
}

#overflow-div {
    text-align: center;
    white-space: nowrap;
}

.result-button {
    margin-right: 10px;
    margin-top: 15px;

    color: white;
    background-color: #216ec7;
    border-color: #2140c7;
    border-width: 2px;
}

.result-button:active {
    background-color: #216ec7;
    border-color: #dddddd;
}

#main-div > button {
    font-size: 15px;
}

#canvas {
    display: none;
    margin: auto;
    position: relative;
}

#header {
    font-size: 23px;
}

#input-label, #error-label {
    color: red;
}

#error-label {
    margin-top: 10px;
}

#steps-label, .stats-values {
    color: blue;
}

#help-div, #stats-div {
    margin-top: 40px;
    display: none;
    z-index: 2;
    position: absolute;
    height: fit-content;
    -moz-height: fit-content;
    padding: 5px;
    top: 200px; bottom: 0;
    left: 0; right: 0;
    border-style: solid;
    border-radius: 5px;
    border-color: black;
}

#help-div {
    background-color: rgb(0, 119, 255);
    color: white;
    width: 230px;
    height: 450px;
}

#stats-div {
    background-color: rgb(218, 218, 218);
    width: 270px;
    height: 380px;
}

#stats-div > ul {
    text-align: left;
}

#stats-div > p {
    font-size: 18px;
    font-weight: 900;
}

input {
    width: 70%;
    margin-bottom: 15px;
}