.widget-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 5px;
  flex-direction: column;
}
.wheeled-input {
  margin-bottom: 5px;
  font-size: 18px;
  font-weight: bold;
  width: 18px;
  text-align: center;
  box-sizing: content-box;
  /* padding: 6px; */
  padding: 10px;
  border: 1px solid #000;
  border-radius: 3px;
  text-transform: uppercase;
  color: #000;
}

.wheeled-input.filled {
  background-color: #60a35a;
  color: #fff;
}

/* .wheeled-input[value]:not([value=""]) {
  background-color: #60a35a;
  color: #fff;
} */

/* .wheeled-input:focus {
  border-color: #335190;
  outline: 1px solid #335190;
} */

.wheeled-input:not(:last-child) {
  margin-right: 5px;
}

.wheeled-input::selection {
  color: #fff;
  background-color: #335190;
}

.widget-label {
  font-size: 18px;
  font-family: Arial, Helvetica, sans-serif;
  /* margin-right: 5px; */
}

.form-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 5px;
}

.form-container {
  max-width: 530px;
  margin: 0 auto;
  margin-top: 5px;
}

.form-input {
  width: 100%;
  box-sizing: content-box;
  padding: 6px;
  border: 1px solid #000;
  border-radius: 3px;
  text-transform: uppercase;
  font-size: 18px;
}

.form-input:focus {
  border-color: #335190;
}

.lettercount-container {
/*  display: flex; */
  display: none;
  justify-content: center;
  align-items: center;
  margin-top: 5px;
}

.lettercount-container input {
  font-size: 18px;
  width: 22px;
  box-sizing: content-box;
  padding: 6px;
  border: 1px solid #000;
  border-radius: 3px;
  text-transform: uppercase;
  text-align: center;
}

.lettercount-container button {
  width: 28px;
  height: 28px;
  box-sizing: content-box;
  padding: 0px;
  border: 1px solid #000;
  border-radius: 3px;
  text-transform: uppercase;
  border-radius: 15px;
}

.lettercount-container > *:not(:last-child) {
  margin-right: 5px;
}

@media screen and (max-width: 480px) {
  .widget-label {
    width: 100%;
  }
  .widget-container {
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
    margin-left: -5px;
    margin-top: -5px;
  }
  .widget-container > * {
    margin-right: 0px !important;
    margin-left: 5px;
    margin-top: 5px;
  }
  .wheeled-input {
    margin-bottom: 5px;
  }
  .form-row {
    justify-content: flex-start;
  }
  .form-row > *:first-child {
    margin-right: 12px;
  }
  .lettercount-container {
    justify-content: flex-start;
  }
}

.actions-row {
  display: flex;
  align-items: center;
}
.actions-row > *:not(:last-child) {
  margin-right: 12px;
}

.clear-btn {
  height: 32px;
  line-height: 32px;
  border-radius: 3px;
  box-shadow: 0 1px 3px rgb(0 0 0 / 15%);
  padding: 0 14.5px;
  color: #333;
  vertical-align: middle;
  font-weight: 400;
  border: 1px solid #ccc;
}

.grey-bc-active:not(:placeholder-shown) {
  background-color: #c1cacf;
}
.grey-bc-active[value]:not([value=""]) {
  background-color: #c1cacf;
}
.orange-bc-active:not(:placeholder-shown) {
  background-color: #cdb85d;
}
.orange-bc-active[value]:not([value=""]) {
  background-color: #cdb85d;
}
.grey-bc-active:placeholder-shown {
  background-color: #fff !important;
}
.orange-bc-active:placeholder-shown {
  background-color: #fff !important;
}

.btn-input {
  width: 40%;
  display: flex;
  flex-direction: column;
}

.btn-input > :nth-child(2) {
  width: 145px;
  margin-top: 10px;
  margin-bottom: 10px;
}

.btn-input input {
  width: auto;
}

.words-container {
  max-width: 530px;
  margin: 0 auto;
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: space-between;
}
.words-container > * {
  width: 40%;
  /* text-align: center; */
}

.printed_word {
  font-weight: bold;
  font-size: 22px;
  color: #000;
}

.align-flex-start {
  align-self: flex-start;
}
.align-flex-end {
  align-self: flex-end;
}

.next-btn {
  cursor: pointer;
  font-family: "Lora", serif;
  font-size: 14px;
  height: 32px;
  text-decoration: none;
  margin-top: 10px;
  margin-bottom: 10px;
  background: #335190;
  color: #fff;
  font-weight: bold;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
  line-height: 32px;
  border: none;
  border-radius: 3px;
  display: inline-block;
  padding: 0 14.5px;
  width: 110px;
  margin-top: 12px;
}

.next-btn:hover {
  background: #263c6a;
}

.next-btn:active {
  background: #182745;
  box-shadow: 0 -1px 1px rgba(0, 0, 0, 0.2) inset;
}


.w-100{
  width: 100%
}

#wordle-help-intro {
    margin: 20px 0;
    padding: 15px;
    background-color: #f8f8f8; /* light gray */
    border: 1px solid #ccc; /* gray */
    border-radius: 5px; /* rounded corners */
    font-size: 1.1em; /* slightly larger text */
    line-height: 1.5; /* more space between lines of text */
    color: #333; /* dark gray */
}

