#plot-container-wrapper {
    background-color: rgba(240, 240, 240, 0.5);
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.7);
    padding: 20px;
    justify-content: space-between;
    height: 640px;
    display: flex;
    flex-direction: row;
}


#left-plot-container {
    display: flex;
    flex: 1 1 0;
    margin-right: 20px;
    flex-direction: column;
    justify-content: space-between;
    align-items: stretch;
    /* background-color: white; */
}

#right-plot-container {
    display: flex;
    flex: 2 1 0;
    flex-direction: column;
    justify-content: space-between;
    /* background-color: white; */
}

#plot {
    width: 100%;
    height: 80%;
}

#plot2 {
    flex: 1 1 0;
    width: 100%;
    aspect-ratio: 2 / 1;
}

#plot3 {
    width: 100%;
    height: 18%;
}

#plot4 {
    flex: 1 1 0;
    width: 100%;
    aspect-ratio: 2 / 1;
}

.slider {
    margin-left: auto;
    width: 50%;
}

.slider-container {
    background-color: rgba(255, 255, 255, 0.9);
    /* light background */
    padding: 20px;
    border-radius: 10px;
    box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.1);
    display: flex;
    flex: 1;
    flex-direction: column;
    justify-content: space-between;
    /* width: 400px; */
}

.textbox {
    border-style: solid;
    box-shadow: inset 0px 0px 0px 0px black;
    border: none;
    background-color: transparent;
    flex: 1 1 0;
}

label {
    font-family: sans-serif;
    font-size: inherit;
}

@media screen and (max-width: 768px) {
    #plot-container-wrapper {
        max-width: 100%;
    }

    #left-plot-container {
        max-width: 100%;
    }

    #right-plot-container {
        max-width: 100%;
    }

    #plot {
        max-width: 100%;
    }

    #plot2 {
        max-width: 100%;
    }

    #plot3 {
        max-width: 100%;
    }

    #plot4 {
        max-width: 100%;
    }

    .slider-container {
        max-width: 100%;
    }
}