.table-selector {
  display: flex;
  gap: 8px;
  margin: -10px 0 25px 20px;
  flex-wrap: wrap;
}

@media only screen and (max-width: 630px) {
  .table-selector {
    margin: 14px 0 8px 0;
  }
}

.table-button {
  padding: 10px 16px;
  background-color: #e0e0e0;
  border: 2px solid #ccc;
  border-radius: 8px;
  cursor: pointer;
  font-weight: bold;
  font-size: 16px;
  transition: all 0.2s;
  user-select: none;
}

.table-button:hover {
  background-color: #d0d0d0;
}

.table-button.active {
  background-color: #ffb303;
  color: white;
  border-color: #ffb303;
}

#form-fields {
  display: flex;
  flex-wrap: wrap;
  position: relative;
  padding-right: 17px;
}
.repeat {
  position: absolute;
  top: 0;
  right: 16px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 50px;
  line-height: 45px;
  color: #fff;
  padding: 0 0 0 10px;
  cursor: pointer;
}
.field {
  position: relative;
  width: 100%;
  height: 108px;
  background-color: #414141;
  margin-bottom: 10px;
  border-radius: 5px;
}
.field input {
  position: absolute;
  top: 0;
  left: 0;
  right: 60px;
  font-size: 30px;
  padding: 5px 14px;
  border: 5px solid #414141;
  cursor: default;
  border-radius: 8px;
  color: #333;
}
.field input.correct {
  color: green;
  border-color: green;
}
.field input.incorrect {
  color: red;
  border-color: red;
}
.field input.paused {
  cursor: pointer;
}
.field input.paused::placeholder {
  color: #aaa;
}
.number-buttons {
  position: absolute;
  top: 53px;
  left: 5px;
  right: 75px;
  display: flex;
  justify-content: space-between;
}
.number-button {
  display: block;
  width: 50px;
  height: 50px;
  color: white;
  text-align: center;
  line-height: 50px;
  font-weight: bold;
  font-size: 20px;
  cursor: pointer;
  margin: 1px;
}
.number-button.paused {
  color: #a49da5;
  cursor: help;
}

.results-sentence {
  background: white;
  color: green;
  border-radius: 5px;
  margin-right: 10px;
  margin-bottom: 10px;
}
.results-sentence.completed-sentence {
  background: green;
  color: white;
}
.results-sentence h3 {
  display: inline-block;
  font-weight: bold;
  padding: 0 10px;
  cursor: crosshair;
}
.results-sentence span {
  display: inline-block;
  padding: 0 10px;
}
