.sudoku-board {
    display: grid;
    gap: 5px;
    margin: auto;
    /* border: 1px solid black; */
  }
  
  .sudoku-cell.easy {
    width: 30px;
    height: 30px;
    font-size: 1.2rem;
    /* border: 1px solid black; */
  }
  
  .sudoku-cell.medium {
    width: 35px;
    height: 35px;
    font-size: 1.35rem;
  }
  
  .sudoku-cell.hard {
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
  }
  
  
  #options {
    margin-top: 20px;
    text-align: center;
  }
  
  button {
    cursor: pointer;
  }
  

  .sub-grid-border {
    border: 2px solid black; /* Adjust thickness if needed */
    box-sizing: border-box;
}

/* .sudoku-row{
    border: 1px solid black;
} */

#map {
  height: 100%;
}
#map {
  height: 400px; /* The height is 400 pixels */
  width: 100%; /* The width is the width of the web page */
}
html, body {
  height: 100%;
  margin: 0;
  padding: 0;
}

.select{
  width: 200px;
}

/* .solution {
    width: 40px;
    height: 40px;
    text-align: center;
    border: 1px solid #aaa;
    background-color: rgba(255, 255, 255, 0.7);
    position: absolute;
    pointer-events: none;
} */


.solution {
    background-color: rgba(255, 255, 255, 0.7);
    position: absolute;
    border: 1px solid #000;
    width:100%;
    height:100%;
}