
.panel{
    display:flex;
    margin-left:15px;
    margin-top:15px;
    height:calc(var(--vh, 1vh) * 100 - 45px);
    width:calc(100% - 100px);
}
.console_controller{
    width:70%;
    height:100%;
    border: 1px solid #bcbcbc;
    border-radius:35px;
    background-color: #333333;
    box-shadow: 0px 0px 10px #ccc;
}
.console_output{
    position:relative;
    height:100%;
    width:100%;
    border-radius:35px;
    z-index:1;
}
.executer{

    display:flex;
    position:fixed;
    width:calc(100% - 15px);
    left:15px;
    top:calc(100% - 65px);
    height:50px;
}
.console_toolbox{
    display:flex;
    position: fixed;
    width:calc(100% - 15px);
    left:15px;
    top:15px;
    height:50px;
}
.command{
    padding:10px 15px;
    height:calc(100% - 20px);
    width:calc(100% - 110px);
    border-radius:25px;
    box-shadow: 0px 0px 10px #ccc;
    font-family:'Consolas','Menlo','Noto Mono','Courier New', Courier, monospace;
    font-size:20px;
    outline:none;
    border:none;
    resize:none;
}
.command_input{
    border:0cm;
}
.panel_right{
    margin-left:15px;
    width:calc(62% - 15px);
}
.send_button{
    margin-left:15px;
    width:50px;
    height:50px;
    margin-bottom:15px;
    border:0px;
    border-radius: 50%;
    box-shadow: 0px 0px 10px #ccc;
    background-color: #b0c9f7;
    transition: background-color 0.2s; 
    padding:0px;
}
.send_button_image{
    margin-top:5px;
    margin-left:0px;
    width:38px;
}