.links{
    font-size: 25px;
}
.hidden {
    display: none;
  }
 .button{
  height:80px;
  font-size: 20px;
  background-color: #9999;
  color: #ffffff;
 }
 .button:hover {
  background-color: gray;
}
 
   .buttonParse{
    position:absolute;
    width: 15%;
    height: 50%;
    font-size: 20px;
    background-color: #9999;
    color: #ffffff;
   }
   .buttonClear{
    position:absolute;
    top: 50%;
    width: 15%;
    height: 50%;
    font-size: 20px;
    background-color: #9999;
    color: #ffffff;
   }
 
 #blueLines{
  background-color: #0000ff;
  color: #ffffff;
  height:80px;
 }
 #redLines{
  background-color: #ff0000;
  
  color: #ffffff;
 }
 #greenLines{
  background-color: #285014;
  
  color: #ffffff;
 }
 #blackLines{
  background-color: #000000;
  
  color: #ffffff;
 }
 .container {
    position:relative;
  }
  .box {
    position: absolute;
    width: 400px;
    height:250px;
    background-color: #ccc;
    border: 1px solid #999;
    cursor: move;   
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Three columns with equal width */
    grid-gap: 3px; /* Gap between the buttons */
    grid-row-gap: 3px;
  }
  #transformsPanel{
    position: absolute;
    width: 400px;
    height:250px;
    background-color: #ccc;
    border: 1px solid #999;
    cursor: move;   
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Three columns with equal width */
    grid-gap: 3px; /* Gap between the buttons */
    grid-row-gap: 3px;
  }
  #divParser{
    position:absolute;
    width: 400px;
    height: 400px;
    background-color: #999;
    border:10px solid #999;
    cursor:move;
    display:block;
  }
 
  #modelCanvas{
    width: 100%;
    height: 100%;
    background-color: #ffff;
  }
  
 
  #displayParser{
  height:100%;
 
  }
  #textParser{
    width: 85%;
    height: 100%;
    resize: none;
    background-color: #ffff;
    
  }
  label{
    height:80px;
    font-size: 20px;
    display: flex;
    text-align:center;
    align-items: center;
    background-color: #9999;
    color: #ffffff;
    padding:0px 10px;
    border:2px solid #000;
}
label:hover {
  background-color: gray;
}

  