body {
  margin: 0;
  padding: 0;
  background-color: #f0f0f0;
  font-family: Arial, sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

#game-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.piece-drawer {
  display: none;
}

#gameCanvas {
  border: 1px solid #000;
}

#word-list-container {
  position: absolute;
  top: 0;
  right: 0;
  font-size: 24px;
  background-color: #fff;
  padding: 10px;
  z-index: 1;
  margin-top: 20px;
}

#puzzle-piece-container {
  position: absolute;
  bottom: 0;
  left: 0;
  font-size: 24px;
  background-color: #fff;
  padding: 10px;
  z-index: 1;
}

/* Default Style for Words */
#word-list-container div {
  margin-bottom: 10px;
}

/* Style for Found Words */
#word-list-container div[style*="line-through"] {
  color: green; /* Change text color to green */
  font-weight: bold; /* Make the text bold */
}
