/* Custom styles here */.key {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 4px;
  padding: 10px 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  background: #f8f8f8;
  font-size: 0.85rem;
  font-family: 'Courier New', monospace;
  width: 50px;
  height: 60px;
  box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.05);
  transition: all 0.2s ease-in-out;
}

.key.active {
  background-color: #cce5ff;
  border-color: #66b0ff;
  box-shadow: 0 0 5px #66b0ff;
}

.key.pressed {
  background-color: #d4edda;
  transform: scale(0.95);
  box-shadow: inset 0 2px 4px rgba(0,0,0,0.2);
}

#keyboard {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 1rem;
  padding: 1rem;
  background-color: #fff8dc;
  border-radius: 10px;
  border: 1px solid #ffe58a;
}
.correct {
  color: rgb(38, 239, 105);
  font-weight: bold;
}
.wrong {
  color: red;
  font-weight: bold;
}
.corrected {
  color: rgb(185, 63, 242);
  font-weight: bold;
}
.current {
  background-color: rgb(25, 172, 212);
}
