
.wordcolours {
 
}

.wordmix-container {
  margin: auto auto 30px auto;
  width: 339px;
  font-size: 1.1em;
}

#dict {
  display: flex;
  justify-content: space-between;
  margin-top:30px;
}

.jumbleselect {
  margin: 0;
  height: 40px;
}

#selDict {
  border: 1px solid rgb(187, 7, 7);
}
#selTimer {
  margin-left: 10px;
}

#game {
  margin: 0 auto;
  padding-top: 20px;
  text-align: center;
}

.labels {
  display: flex;
  justify-content: space-between;
}
.labels div {
  width: 80px;
  font-size: 0.9em;
  text-align: center;
}

#top {
  display: flex;
  justify-content: space-between;
}

/* input  */
#startBtn {
  width: 70px;
  height: 70px;
  color: var(--btn-color)!important;
background-color: #006e00!important;
font-size:1.2em;
padding:0;
text-align: center;
border-radius:2.5px;
border: 1px solid rgb(121, 121, 121);
}

.pointsClass {
  width: 70px;
  height: 70px;
  line-height:70px;
  color: var(--btn-color)!important;
  border-radius:2.5px;
}

#points,
#wordmixHS {
  background: #d95c1e;
  font-size: 1.4em;
}

#clock {
  background: #d13115;
  color: var(--btn-color);
  box-shadow: none;
  font-size: 1.3em;
}

#wordsDiv {
  width: 339px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  margin: 8px auto 0;
  background-color: var(--scrabble-bg);
  border:1px solid var(--border-color);
}
.label1 {
  flex-basis: 33.333333%;
  border: 0.5px solid rgb(134, 133, 133);
  height: 40px;
  text-align: center;
  font-size: 1.3em;
  color: #800000;
  cursor: pointer;
}

#inputDiv1 {
  display: flex;
  justify-content:center ;
  margin-top: 10px;
}

#wordInput1 {
  width:250px;
  border: 2px solid #020202;
  height: 50px;
  padding-left: 5px;
  font-size:1.2em;
}

#submitBtn {
  background-color: #006e00!important;
  height: 50px;
  width: 80px;
  font-size:1.2em;
  color: var(--btn-color);
  border: 1px solid rgb(121, 121, 121)!important;
  border-radius: 2.5px;
  padding:0;
  margin-left:5px;
 text-align: center;
}
.submitBtn:disabled,
.submitBtn[disabled] {
  opacity: 0.6;
  pointer-events: none;
}

#startBtn:hover,
#startBtn:focus,
#submitBtn:hover,
#submitBtn:focus {
  border-color: #666;
}

#remaining,
#foundWords,
#unfound,
#about {
  margin: auto;
  max-width: 500px;
  border: 1px solid #000;
  border-radius:2.5px;
  padding: 5px;
  text-align: center;
}
#remaining {
  margin: 5px auto 0 auto;
  display: none;
}
#remaining,
#foundWords,
#unfound,
#about p {
  font-size: 1.1em;
}
#foundWords,
#unfound {
  margin: 20px auto;
}
#foundWords {
    color:var(--anagram-found-green);
}
#unfound {
    color:var(--red);
}
#about {
  text-align: left;
  padding-left: 20px;
  padding-right: 20px;
  font-size: 14px;
}
#about h3,
#about h2 {
  margin-bottom: 10px;
}
#dialog-message {
  display: none;
}

@media screen and (min-width: 470px) {
  .wordmix-container {
    width: 429px;
  }

  .jumbleselect {
    font-size: 1.1em;
  }
  #wordsDiv {
    width: 429px;
  }
  .label1 {
    width: 141px;
    font-size: 1.5em;
  }

  #submitBtn {
    font-size: 1.3em;
  }
}

@media screen and (min-width: 768px) {
  .wordmix-container {
    width: 489px;
  }
  #wordsDiv {
    width: 489px;
  }
  .label1 {
    width: 161px;
  }
  #wordInput1 {
    width:300px;
    padding-left: 10px;
  }
}

@media screen and (min-width: 950px) {
  #game {
    margin: auto;
  }
}
