body {
  font-family: 'Arial', sans-serif;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background-color: #f0f0f0;
}

#crossword-container {
  display: grid;
  grid-template-columns: repeat(10, 40px);
  grid-template-rows: repeat(10, 40px);
  gap: 1px;
}

.cell {
  position: relative;
  width: 40px;
  height: 40px;
  border: 1px solid #ccc;
  text-align: center;
  line-height: 40px;
  font-size: 12px;
  cursor: pointer;
}

.across, .down {
  background-color: #ffb6c1;
  padding: 5px;
  margin-bottom: 5px;
}

/* Add style for highlighting clues */
.highlight {
  background-color: #ffff00; /* Use your preferred highlight color */
}
