body {
  font-family: Arial, sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  margin: 0;
}

.container {
  text-align: center;
}

#wordSearchGrid {
  display: grid;
  gap: 0; /* Remove gaps between cells */
  margin: 20px 0;
}

.grid-item {
  width: 40px; /* Increase the size of the grid items */
  height: 40px; /* Increase the size of the grid items */
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f0f0f0;
  border: 1px solid #ccc;
  cursor: pointer;
  box-sizing: border-box; /* Ensure padding and border are included in the width and height */
}

.grid-item.selected {
  background-color: yellow;
}

.grid-item.found {
  background-color: lightgreen;
}

@media (max-width: 600px) {
  .grid-item {
    width: 30px; /* Adjust size for smaller screens */
    height: 30px; /* Adjust size for smaller screens */
    font-size: 12px;
  }
}
