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

.container {
  text-align: center;
}

h1 {
  margin-bottom: 20px;
}

.controls {
  margin-bottom: 20px;
}

#target-word {
  background-color: #333;
  color: #e0e0e0;
  border: 1px solid #555;
  padding: 8px;
  border-radius: 4px;
}

button {
  background-color: #4caf50;
  color: white;
  padding: 8px 12px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  margin-left: 10px;
}

button:hover {
  background-color: #45a049;
}

#clear-btn {
  background-color: #f44336;
}

#clear-btn:hover {
  background-color: #da190b;
}

.grid {
  display: grid;
  grid-template-columns: repeat(5, 50px);
  grid-template-rows: repeat(6, 50px);
  gap: 5px;
  margin: 20px auto;
}

.grid-cell {
  width: 50px;
  height: 50px;
  border: 2px solid #333;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  font-weight: bold;
  text-transform: uppercase;
}

.results {
  margin-top: 20px;
}

#results-container {
  background-color: #222;
  border: 1px solid #444;
  padding: 10px;
  border-radius: 4px;
  min-height: 100px;
  text-align: left;
}

#status-bar {
  margin-top: 20px;
  padding: 10px;
  background-color: #333;
  border-radius: 4px;
}
