button {
  background: transparent;
  box-shadow: 0px 0px 0px transparent;
  border: 0px solid transparent;
  text-shadow: 0px 0px 0px transparent;
}

button:hover {
  background: transparent;
  box-shadow: 0px 0px 0px transparent;
  border: 0px solid transparent;
  text-shadow: 0px 0px 0px transparent;
}

button:active {
  outline: none;
  border: none;
}

button:focus {
  outline: 0;
}

.chore-container {
  width: 100%;
  height: 100%;
}

.running-chores {
  list-style-type: none;
  background-color: white;
  border-bottom-left-radius: 0.5em;
  border-bottom-right-radius: 0.5em;
  padding: 0.25em;
  padding-top: 0.5em;
  box-shadow: 1px 2px rgba(128, 128, 128, 0.432) inset;
  height: 40em;
  overflow-y: scroll;
  margin-top: 0;
}

.chore-menu {
  background-color: blue;
  width: 100%;
  min-height: 10em;
  margin-top: 0.25em;
  border-top-left-radius: 0.5em;
  border-top-right-radius: 0.5em;

}

.chore-form-flexbox {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 5em;
  padding: 1em;
}

.chore-form-select {
  height: 2em;
  margin-bottom: 1em;
}

.chore-form-flexbox {
  display: flex;
  flex-direction: column;
}

.chore-form-inputs-flexbox {
  text-align: left;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
}

.chore-form-file-input-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
}

.chore-form-top-level-input-wrapper {
  width: 32%;
  min-height: 3em;
}

.chore-form-input-errors-wrapper{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.chore-form-input-wrapper {
  padding-left: 0.25em;
  padding-right: 0.25em;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.chore-form-label {
  color: white;
}

.chore-form-file-input {
  color: white;
}

.chore-run-submit-button {
  color: white;
  border: 1px solid white;
  border-radius: 1em;
  padding-left: 0.5em;
  padding-right: 0.5em;
  padding-top: 0.25em;
  padding-bottom: 0.25em;
  align-self: flex-end;
}

.chore-run-submit-button:hover{
  border: 2px solid white;
  margin-top: -1px;
  margin-right: -1px;
}

.chore-run-submit-button:active{
  color: blue;
  background-color: white;
  border: 2px solid white;
  margin-top: -1px;
  margin-right: -1px;
}

.chore-item {
  margin-bottom: 0.1em;
  min-height: 5em;
  border-radius: 1em;
  background-color: white;
  padding-left: 2em;
  padding-right: 2em;
  font-size: 100%;
  font-weight: bold;
  border: 1px solid rgba(233, 233, 233, 0.432);
  box-shadow: 2px 2px rgba(128, 128, 128, 0.432);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

.chore-item-recentlog {
  font-family: Courier New, monospace;
  padding-left: 0.5em;
  padding-right: 0.5em;
  height: 4em;
  width: 20em;
  overflow-wrap: normal;
  background-color: black;
  color: white;
  box-shadow: 1px 2px rgba(128, 128, 128, 0.432) inset;
  text-align: left;
}

.chore-item-stats {
  width: 3em;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: space-between;
}

.chore-item-stats>div {
  width: 2em;
  text-align: center;
  display: flex;
  flex-direction: row;
  align-items: center;
}

.chore-item-stop-button {
  border: 1px solid black;
  border-radius: 1em;
  padding: 0.5em;
}