#graph-container {
    position: relative;
}

#graph-lines {
    /* border: solid 1px black; */
    width: 95%;
}

section {
    display: flex;
    flex-direction: column;
    aspect-ratio: 1/1;
    width: 50vw;
    align-items: center;
}

@media only screen and (orientation: portrait) {
    body {
        flex-direction: column;
        align-items: center;
    }

    section {
        width: 80vw;
    }
}

canvas{
    position: absolute;
    top: 0;
    right: 0;
    margin: 20px auto 0 auto;
    aspect-ratio: 1/1;
    width: 88%;
}

#control-container {
    position: absolute;
    margin-top: 22px;
    top: 0;
    right: 0; 
    width: max-content;
    height: fit-content;
    display: flex;
    flex-direction: row;
}

.graph-controls {
    margin-left: 10px;
    width: 100%;
    height: fit-content;
    border-radius: 5px;
    background-color: #F9F9F9;
    border: solid black 0.5px;
    padding: 7px;
    z-index: 20;
    display: flex;
    flex-direction: row;
    text-wrap: nowrap;
}

.graph-controls input {
    margin-left: 5px;
    width: 80px;
    border-width: 1px;
    border-radius: 2px;
}