#funnywordle-game {
  font-family: Arial, sans-serif;
  text-align: center;
  max-width: 400px;
  margin: auto;
}
#funnywordle-grid {
  display: grid;
  grid-template-columns: repeat(5, 50px);
  gap: 5px;
  margin-bottom: 10px;
}
.cell {
  width: 60px;
  height: 60px;
  border: 2px solid #ccc;
  font-size: 24px;
  text-transform: uppercase;
  line-height: 60px;
  background-color: white;
}
.correct { background-color: #6aaa64; color: white; }
.present { background-color: #c9b458; color: white; }
.absent { background-color: #787c7e; color: white; }
#funnywordle-keyboard {
  margin-top: 10px;
}
.key {
  display: inline-block;
  width: 30px;
  margin: 2px;
  padding: 10px;
  background-color: #eee;
  cursor: pointer;
}
#funnywordle-message {
  margin-top: 10px;
  font-style: italic;
}
#funnywordle-reset {
  margin-top: 10px;
  padding: 5px 10px;
}