#full {
    background-color: #020B13;
}
/* 
#header {
    color: #C5ADFF;
    padding: 0px 10px;;
} */

#content {
    height: 95dvh;
    display: flex;
    flex-direction: row;
}

#left {
    width: 48%;
    height: 100%;
    margin: 1% 1%;
    padding: 0 1%;
    background-color: #0E1B1B;
    font-size: 18px;
    overflow-y: scroll;
    scrollbar-width: thin;
    scrollbar-color: #508484 #0E1B1B;
    color: #FBF5F3;
}


#right
{
    width: 48%;
    height: 100%;
    margin: 1% 1%;
}

#code, #output {
    width: 95%;
    height: 45%;
    margin: auto;
    resize: none;
    color: #FBF5F3;
    background-color: #0E1B1B;
    border: solid 2px #508484;
    padding-left: 5px;
    padding-top: 5px;
    outline: none;
    text-wrap: nowrap;
}

#bar {
    width: 100%;
    height: 5%;
    display: flex;
    flex-direction: row;
}

#run, #clear {
    height: 100%;
    width: 20%;
    background-color: #0E1B1B;
    border: none;
    color: #FBF5F3;
    font-size: 16px;
    cursor: pointer;
}

#run:hover, #clear:hover, #examples:hover {
    background-color: #020B13;
    border: solid 2px #508484;
}

#examples {
    width: 56.5%;
    height: 100%;
    background-color: #0E1B1B;
    color: #FBF5F3;
    border: none;
    font-size: 20px;
    cursor: pointer;
    outline: none;
}