.quad-puzzle-table input {
  width:50px;
  height:50px;
  text-align:center;
  font-size:30px;
  border: 1px solid;
  border-radius: 7px;
}

.arrow:before {
  content:' ';
  background:url('fat_arrow.svg');
  background-size: 100% 100%;
  left:0;
  right:0;
  top:0;
  bottom:0;
  display: block;
  position: absolute;
  z-index:-1;
}


.arrow-h:before{
  transform:rotate(-90deg);
}

.arrow {
  height: 50px;
  width: 50px;
  text-align: center;
  color: white;
  position:relative;
}

.letter-solved {
  background:green;
  color:white;
}
ol.quad-clue-list {
    font-size: 30px;
    background: white;
    border-radius: 30px;
    padding: 30px;
    padding-left: 60px;
}

.clue-hover-primary {
    background: #9999ff;
}


.clue-hover-secondary {
    /*background: #eeeeff;*/
}

.quadwords-list {
    display: grid;
    grid-template-columns: auto auto auto auto;
}


@media only screen and (max-width: 600px) {
  .quadwords-list {
      /* grid-template-columns: auto auto; */
  }

  .quadwords-list button {
    margin: 5px;
    padding: 6px;
  }
  
  ol.quad-clue-list {
    padding:0;
    padding-left: 60px;
  }
}

.quad-clue-list li {
    border-radius: 20px;
    padding-left: 16px;
}
