
 .button{
  width:100px;
  height:50px;
  font-size: 15px;
  background-color: #9999;
  border:2px solid #9999;
  color: #000;
 }
 .button:hover {
  background-color: gray;
  color:white;
}
 
   .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;
 }
 #redLines{
  background-color: #ff0000;
  
  color: #ffffff;
 }
 #greenLines{
  background-color: #285014;
  
  color: #ffffff;
 }
 #blackLines{
  background-color: #000000;
  
  color: #ffffff;
 }
 
  #transforms_panel-div {
    position: absolute;
    background-color: #f1f1f1;
    border: 1px solid #808080;
    text-align: center;
    color:black;
  }
  #transforms_panel-div-header {
    padding: 0px;
    cursor: move;
    z-index: 10;
    height:25px;
    background-color: #808080;
    color: white;
  }
  #transforms_panel-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Adjust as needed */
    gap: 2px; /* Adjust the gap between grid items */
    padding: 0px;
}

  #close-transforms_panel{
    position:absolute;
    cursor:pointer;
    top:0px;
    right: 0px;
    height: 25px;
    width: 25px;
    background-color:red;
  }
 
  #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{
    width:80px;
    display: flex;
    text-align:center;
    align-items: center;
    background-color: #9999;
    color: #000;
    padding:0px 10px;
  }
.label:hover {
  background-color: gray;
  color:white;
}
  

  