
#buttongrid-div {
    position: absolute;
    top:10%;
    left:30%;
    z-index: 9;
    background-color: #f1f1f1;
    border: 1px solid #d3d3d3;
    text-align: center;
    width: auto;
    height:auto;
  }
  
  #buttongrid-div-header {
    padding: 0px;
    cursor: move;
    z-index: 10;
    background-color: #808080;
   
    color: white;
    height: 25px;
  }
  #buttongrid-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* Adjust as needed */
    gap: 5px; /* Adjust the gap between grid items */
    padding: 5px;
  }
  #close-buttongrid{
    position:absolute;
    cursor:pointer;
    top:0px;
    right: 0px;
    height: 25px;
    width: 25px;
    background-color:red;
  }
 .buttongrid-button{
    width:75px;
    height:75px;
 }
.button-image{
    width: auto;
    height:auto;
}

.special-input{
    display:block;
    background-color: gray;
    width: 125px;
    height: 25px;
}

label{
    display:block;
    width:100%;
    text-align:center;
    font-size: 15px;
    background-color: #C0C0C0; /* Green background */ 
    color: black;
    padding:15px 0px;
    cursor: pointer;
}
label:hover {
  background-color: gray;
}

