*{
  font-size:20px;
}
input{
    width:100px;
    height:35px;
    border: none;
    background-color: yellow;
    color:black;
    text-align: center;
}
#force3d-div {
    position: absolute;
    top:50%;
    left:10%;
    background-color: rgb(200,200,200);;
    border: 1px solid #808080;
    text-align: center;
    color:black;
  }
  #force3d-div-header {
    padding: 0px;
    cursor: move;
    z-index: 10;
    height:25px;
    background-color: #808080;
    color: white;
  }
  #close-force3d{
    position:absolute;
    cursor:pointer;
    top:0px;
    right: 0px;
    height: 25px;
    width: 25px;
    background-color:red;
  }
 
  .force3d-btn-group button{ 
    border: none;
    display:block;
    background-color: #4CAF50;
  
    cursor: pointer;
    text-align: center;
    width:fit;
  }
  .force3d-btn-group button:not(:last-child) {
    border-bottom: none; /* Prevent double borders */
  }
  
  .force3d-btn-group button:hover {
    background-color: gray;
  }
    /* Apply some basic styling to the grid */
#force3d-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* Adjust as needed */
    gap: 5px; /* Adjust the gap between grid items */
    padding: 10px;
}

.force3d-item {
    border: 1px solid #ccc;
    padding: 5px;
    text-align: center;
    width:100%;
}
#force3dButtonContainer {
  display: flex; /* Use a flexbox container */
  gap: 5px; /* Add some spacing between buttons */
  flex-direction: row; /* Arrange buttons in a row */
}
#drawForce3dButton{
    width:49%;
    height:50px;
    background-color:darkgray;
   
    cursor: pointer;
    text-align: center;
}
#clearForce3dButton{
  width:49%;
  height:50px;
  background-color:darkgray;
 
  cursor: pointer;
  text-align: center;
}

  
 