/* Global Styles & Colors */
:root {
  --green: #6aaa64;
  --darkendGreen: #538d4e;
  --yellow: #c9b458;
  --darkendYellow: #b59f3b;
  --lightGray: #d8d8d8;
  --gray: #86888a;
  --darkGray: #939598;
  --white: #fff;
  --black: #212121;
  --maroon: #702d2d;
  /* Colorblind colors */
  --orange: #f5793a;
  --blue: #85c0f9;
  font-family: "Clear Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  --header-height: 50px;
  --keyboard-height: 200px;
  --game-max-width: 500px;
}

.selDiv {
  display: flex;
  flex-direction: row;
  justify-content: center;
}

.wordLength {
  width: 120px;
  font-size: 1.2em;
  border-radius: 5px;
}

.start-button {
  font-size: 1.1em;
  padding: 7px 10px;
}
.start-button:hover {
  color: var(--a-hover) !important;
}

.start-button:disabled {
  color: #aaa !important;
  border-color: inherit !important;
}

.game-board {
  max-width: 550px;
  margin: auto;
}

.arrows-rows {
  margin-top: 15px;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: center;
}

.arrows div {
  height: 61px;
  display: flex;
  align-items: center;
  opacity: 0;
}

#word-rows {
  display: flex;
  align-items: center;
  flex-direction: column;
}

.letter-row {
  display: flex;
}

.letter-box {
  border: 2px solid gray;
  margin: 2px;
  color: var(--white);
  font-size: 2.5rem;
  font-weight: 700;
  height: 3.6rem;
  width: 3.6rem;
  display: flex;
  justify-content: center;
  align-items: center;
  text-transform: uppercase;
}

.filled-box {
  border: 2px solid rgb(66, 65, 65);
  background-color: var(--gray);
}

#keyboard-cont {
  touch-action: manipulation;
  margin: 5px 0;
  display: flex;
  /* flex-wrap: wrap; */
  justify-content: center;
  flex-direction: column;
  align-items: center;
}

#keyboard-cont div {
  display: flex;
  justify-content: center;
}

.second-row {
  margin: 2px 0;
}

.keyboard-button {
  width: 35px;
  border-radius: 5px;
  border: 1px solid #ccc;
  /* font-size: 1rem; */
  color: #000;
  font-weight: 700;
  padding: 0.9rem 0;
  margin-right: 1px;
  cursor: pointer;
  text-transform: uppercase;
}

.goBtn {
  width: 50px !important;
  padding: 0.9rem 0;
  background-color: #0d6f04;
  color: #fff;
  font-size: 0.9em;
}

.delBtn {
  width: 50px !important;
  background-color: #520303;
  color: #fff;
  font-size: 0.9em;
  padding: 0.9rem 0;
}

.toast-top-center {
  margin-top: 120px;
}

@media (min-width: 500px) {
  .arrows div {
    height: 68px;
  }
  .letter-box {
    font-size: 2.5rem;
    height: 4rem;
    width: 4rem;
  }
  .keyboard-button {
    width: 40px;
    margin: 2px 1px;
  }
  .delBtn,
  .goBtn {
    font-size: 1em;
  }
  .toast-top-center {
    margin-top: 50px;
  }
}

@media (min-width: 768px) {
  .keyboard-button {
    width: 50px;
  }
}
