


body {
    font-family: sans-serif;
    font-size: 18px;
    margin: 0;
}

.header {
    font-size: 22px;
    height: 50px;
    display: flex;
    align-items: center;

    padding: 8px;
    border-bottom: 1px solid #505050;
}

.header_part {
    margin-right: 10px;
    margin-left: 10px;
}


footer {
    display: flex;
    justify-content: center;

    color: #747474;
}

footer_p {
    font-size: 16px;
}

.main {


    display: flex;
    flex-flow: row wrap;
    padding: 0;
    color: black;

}
.main_header {
    display: flex;
    justify-content: space-between;

    padding-right: 1vw;
    padding-left: 1vw;
}

.main_header_left {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: flex-start;

}

.main_header_right {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: flex-end;

}


.main_name {
    font-size: 26px;

}

.main_header_part {



}



.main_col {
    padding-top: 20px;
    flex: 1 1 50vh;
    flex-direction: column;
    display: flex;

    margin: 0;
}

.button_header {
    font-size: 21px;
    min-width: 80px;
    height: 35px;
}



.select_header {
    font-size: 21px;
    min-width: 80px;
    height: 35px;
}

.main_col_part
{

    max-width: 48vw;
    padding-right: 1vw;
    padding-left: 1vw;
}





#code {

    font-size: 15px;
    margin-top: 20px;
    height: 80vh;
}

#output {
    font-size: 16px;
    margin-top: 20px;
    height: 80vh;
    width: 100%;

    border: 1px solid #8d8d8d;
    overflow-x: hidden;
    overflow-y: scroll;
}


.output_line {
    font-family: Consolas, Menlo, Monaco, monospace;
    width: 100%;

    display: block;
}

.output_line_time {
    color: #787878;
    display: inline-block;
    width: 120px;
    vertical-align:top;
}

.output_line_text {
    color: #000000;
    display: inline-block;
    word-break: break-all;
    margin-block: 0;

}

*.unselectable {
    -moz-user-select: -moz-none;
    -khtml-user-select: none;
    -webkit-user-select: none;

    /*
      Introduced in IE 10.
      See http://ie.microsoft.com/testdrive/HTML5/msUserSelect/
    */
    -ms-user-select: none;
    user-select: none;
}



@media (orientation: portrait)
{



    .header {
        font-size: 12px;
        height: 20px;
    }

    .main_name {
        font-size: 18px;
    }

    .main_header
    {
        padding-right: 2vw;
        padding-left: 2vw;
    }


    .button_header {
        font-size: 14px;
        min-width: 40px;
    }

    .select_header {
        font-size: 12px;
        max-width: 110px;
    }

    .main_col_part
    {
        max-width: 100vw;
    }


    .footer_p {
        font-size: 10px;
    }
}

