/*



 */
/* line 1, app/assets/stylesheets/information-display.scss */
.pill {
  display: inline-block;
  background-color: #ededed;
  padding: 0.5rem 1.25rem;
  border-radius: 2rem;
  margin: 0 0.25rem 1rem;
  letter-spacing: 0.1rem;
}

/* line 9, app/assets/stylesheets/information-display.scss */
.pill.selected {
  background-color: #3b82f6;
  color: #e9f1fd;
}

/* line 15, app/assets/stylesheets/information-display.scss */
a.pill:hover {
  filter: brightness(0.92);
}
/* line 1, app/assets/stylesheets/gameboard.scss */
body {
  background-color: #eceae8;
}

/* line 5, app/assets/stylesheets/gameboard.scss */
.letter.tile {
  aspect-ratio: 1 / 1;
  border: 1px solid #222;
  width: 3rem;
  height: 3rem;
  color: #222;
  font-size: 2rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
}

/* line 19, app/assets/stylesheets/gameboard.scss */
.letter-drawer {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  margin-bottom: 4rem;
}

/* line 26, app/assets/stylesheets/gameboard.scss */
.letter-drawer .letter.tile {
  margin: 0 0.5rem 0.5rem 0;
  position: relative;
  transition: all 0.1s ease-out;
}

/* line 34, app/assets/stylesheets/gameboard.scss */
.letter-drawer .letter.tile:hover {
  margin: 0.125rem 0.375rem 0.375rem 0.125rem;
}

/* line 43, app/assets/stylesheets/gameboard.scss */
table.game-board {
  width: 100%;
  font-size: 2rem;
  line-height: 1;
  margin: 0 auto 1rem;
}

/* line 50, app/assets/stylesheets/gameboard.scss */
table.game-board tbody tr td {
  aspect-ratio: 1 / 1;
  width: 3rem;
  height: 3rem;
  text-align: center;
  color: #090909;
  border: 1px solid #494949;
  border-collapse: collapse;
  position: relative;
}

/* line 62, app/assets/stylesheets/gameboard.scss */
table.game-board tbody tr td.wrongPosition {
  background-color: #2a73ad;
  color: white;
}

/* line 68, app/assets/stylesheets/gameboard.scss */
table.game-board tbody tr td.correct {
  background-color: #19a497;
  color: white;
}

/* line 77, app/assets/stylesheets/gameboard.scss */
table.game-board tbody tr td:hover {
  color: #222;
  border: 1px solid #222;
  cursor: pointer;
}

/* line 83, app/assets/stylesheets/gameboard.scss */
table.game-board tbody tr td div.coords {
  font-size: 75%;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

/* line 96, app/assets/stylesheets/gameboard.scss */
table.game-board tbody tr td div.letter {
  color: #222;
  font-size: 2rem;
  font-weight: 500;
  z-index: 20;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
