.wrapper {
  display: grid;
  width: 100vw;
  height: 100vh;
  grid-template-columns: 20% 1fr 20%;
  grid-template-rows: 20% 1fr 20%;
  gap: 10px;
  grid-template-areas:
    "top top top"
    "left center right"
    "bottom bottom bottom";
}

.item-top {
  grid-area: top;
  display: flex;
  flex-direction: row;
}

.item-left {
  grid-area: left;
}

.item-right {
  grid-area: right;
}

.item-bottom {
  grid-area: bottom;
  display: flex;
}

.item-center {
  grid-area: center;
  background-color: blanchedalmond; /* Fond pour le différencier du body */
  display: flex;
  justify-content: center;
  align-items: center;
}

.bad-choice-slot {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5em;
  color: #333;
  padding: 10px;
  text-align: center;
  /* Par défaut, la case est invisible */
  background-color: transparent;
  border: none;
  transition: background-color 0.5s ease;
}

.bad-choice-slot.visible {
  background-color: #00000022;
  border: 2px dashed #00000044;
}