.gameKeyboard__root {
  margin: 0 0.5rem;
}

.gameKeyboard__row {
  display: flex;
  width: 100%;
  margin: 0 auto 8px;
  touch-action: manipulation;
}

.gameKeyboard__row button {
  font-family: inherit;
  font-weight: bold;
  border: 0;
  padding: 0;
  margin: 0 6px 0 0;
  height: 58px;
  border-radius: 4px;
  cursor: pointer;
  user-select: none;
  color: #1a1a1b;
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  text-transform: uppercase;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0.3);
}

.gameKeyboard__row button[data-state='correct'] {
  background: #6aaa64;
  color: white;
}
.gameKeyboard__row button[data-state='wrong'] {
  background: #787c7e;
  color: white;
}
.gameKeyboard__row button[data-state='partial'] {
  background: #c9b458;
  color: white;
}
.gameKeyboard__row button[data-state='todo'] {
  background: #d3d6da;
}
