*{
    margin:0;
    padding:0;
    box-sizing:border-box; 
    --menu-color: #2a2a2a;
    --black-color:rgb(19, 19, 19);
    font-family: Hack, monospace;
}
*:focus {
    outline: 0;
}

body{
    background-color: rgb(66, 66, 66);
    color: white;
}


#dash{
    width: 300px;
    background: var(--menu-color);
    height: 100%;
    width: 300px;
    position: fixed;
    z-index: 1;
    top: 0;
    left: 0;
}

#instruction-box{
    width: 300px;
    height: 300px;
    overflow-y: scroll;
}
.ins-line{
    text-align: left;
    background-color: rgb(70, 70, 70);
    border-bottom: 1px solid rgb(95, 95, 95);
    padding-left: 20px;
}
.selected-line{
    background-color: rgb(176, 0, 0);
}

.content{
    margin-left:300px;
}

.gauges{
    display: flex;
    flex-direction: row;
    width: 300px;
    justify-content: space-evenly;
    margin-top:10px;
}

.buttons{
    display: flex;
    flex-direction: row;
    width: 300px;
    justify-content: space-evenly;
    margin-top:10px;
}
.menu-btn{
    background-color: rgb(22, 177, 11);
    width: 40px;
    height: 40px;
    border:none;
    border-radius: 3px;
    font-size: 13px;
    box-shadow: 1px 1px 3px rgb(0, 0, 0);
    font-weight: 600;
}

.menu-btn:active{
    background-color: rgb(20, 88, 15);
    transform: translate(1px,1px);
    box-shadow: none;
}

.selected{
    background-color: rgb(20, 88, 15);
    box-shadow: none;
}

#clk{
    background-color: rgb(224, 80, 19);
}
.reg{
    margin-left: 10px;
    background-color: rgb(98, 98, 98);
    padding-top:5px;
    padding-inline:10px;
    padding-bottom:15px;
    text-align: center;
    height: 30px;
    margin-top:5px;
    border-radius: 5px;
    box-shadow: 1px 1px 3px rgb(0, 0, 0);
}
.mem-ctn{
    margin-top:5px;
    overflow-y: auto;
    height:220px;
}

.content{
    position: relative;
}

#schematic{
    width:1000px;
    margin-top:100px;
}

.signal-field{
    position: absolute;
    top:0;
    left:0;
    text-align: center;
}

.page{
    position: relative;
    width: 100%;
    height: 100%;
}

.overlay{
    width: 100vw;
    height: 100vh;
    background-color: #000000b4;
    z-index: 10;
    position: absolute;
    top:0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.popup{
    width: 400px;
    height: 600px;
    position: relative;
    background-color: rgb(145, 145, 145);
    display: flex;
    justify-content: flex-start;
    align-items:flex-start;
    flex-direction: column;
}

.ide-toolbar button{
    width: unset;
    padding-inline:10px;
    margin-top:3px;
    margin-left: 3px;
}

.console-toolbar button{
    border: none;
    background-color: rgb(153, 153, 153);
    margin:0px;
    height: 25px;
    padding-inline:10px;
    box-shadow: 0px 0px 10px rgb(0, 0, 0);
}

.console-toolbar button.toolbar-selected{
    background-color: rgb(204, 204, 204);
    z-index: 20;
}

#console-btn{
    position: absolute;
    left: 3px;
}
#output-btn{
    position: absolute;
    left: 75px;
}


#input-code{
    width: calc(100% - 6px);
    margin: 3px;
    padding: 10px;
    border: 1px solid rgb(207, 207, 207);
    resize: none;
    background-color: var(--menu-color);
    color:rgb(59, 165, 236);
    line-height: 16px;
    border: none;
}

.console-toolbar{
    position: relative;
    height: 30px;
}

#console{
    background-color: black;
    font-size: 12px;
    height: 130px;
    padding: 10px;
    width: calc(100% - 6px);
    margin: 0 3px 3px 3px;
    overflow-y: auto;
    white-space: pre-wrap
}




::-webkit-scrollbar {
    width: 8px;
  }
  
  /* Track */
  ::-webkit-scrollbar-track {
    background: #555555; 
  }
   
  /* Handle */
  ::-webkit-scrollbar-thumb {
    background: #888; 
  }
  
  /* Handle on hover */
  ::-webkit-scrollbar-thumb:hover {
    background: #555; 
  }