/**
* Styles for the puzzle
*/
.puzzle {
  border: 1px solid black;
  padding: 20px;
  float: left;
  margin: 15px 10px;
}

.puzzle div {
  width: 100%;
  margin: 0 auto;
}

/* style for each square in the puzzle */
.puzzle .puzzleSquare {
  height: 41px;
  width: 41px;
  text-transform: uppercase;
  background-color: white;
  border: 0;
  font: 1.3em sans-serif;
}

.length-19 .puzzle .puzzleSquare {
  height: 35px !important;
  width: 35px !important;
}

.length-18 .puzzle .puzzleSquare {
  height: 37px !important;
  width: 37px !important;
}

.length-17 .puzzle .puzzleSquare {
  height: 39px !important;
  width: 39px !important;
}

button::-moz-focus-inner {
  border: 0;
}

/* indicates when a square has been selected */
.puzzle .selected {
  background-color: #FCC733;
}

/* indicates that the square is part of a word that has been found */
.puzzle .found {
  background-color: #FF7950;
  color: white;
}

.puzzle .solved {
  background-color: #FF7950;
  color: white;
}

/* indicates that all words have been found */
.puzzle .complete {
  /*
  background-color: green;*/
}

/**
* Styles for the word list
*/
.words {
  padding-top: 25px;
  margin-right: 20px;
}

.words ul {
  list-style-type: none;
  margin: 0px;
  padding: 0px;
}

.words li {
  width: 100%;
  background: #CCCCCC;
  padding: 10px;
  margin-bottom: 10px;
  color: white;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 16px;
  text-align: center;
}

/* indicates that the word has been found */
.words .wordFound {
  background-color: #35CC8B !important;
  text-decoration: line-through;
}

/**
* Styles for the button
*/
.solve {
  margin: 0 30px;
}