html {
  color-scheme: dark;
  background-color: #225555;
  /*color-scheme: light dark;*/
}

body {
  font-family: system-ui;
  font-size: 1.125rem;
  margin: 2.5% 5% 2.5% 5%;
}

#dayInput {
  align-items: center;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr;
  flex-direction: column;
  flex-wrap: wrap;
}

.dayInputRow {
  width: 100%;
  margin: 0.25rem 0 0.25rem 0;
}

.dayInputRow * {
  border: none;
  border-radius: 2px;
  box-shadow: none;
  font-size: 1.25rem;
}

.warning {
  font-size: 1rem;
  color: #FFC107;
  margin-left: 0.5rem;
  vertical-align: middle;
}

.dateInputRow {
  display: flex;
  justify-content: center;
  align-items: center;
}

.dayRow {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  flex-direction: row;
  align-items: center;
}

.timeInputRow {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  flex-direction: row;
  align-items: center;
}

.temperatureInputRow {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  flex-direction: row;
  align-items: center;
}

.spottingInputRow {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  flex-direction: row;
  align-items: center;
}

.spottingInputRow input {
  position: absolute;
  opacity: 0;
}

.spottingInputRow input + label {
  color: #fff;
  background: buttonface;
  width: 2rem;
  height: 2rem;
  text-align: center;
}

.spottingInputRow input:checked + label {
  background: #FFC107;
  color: #333;
}

input[type="checkbox"] {
  accent-color: #FFC107;
  margin: 0 0.5rem 0 0.5rem;
}

.mucusAndPain {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  flex-direction: row;
  align-items: center;
  margin: .7rem 0 .7rem 0;
}

.mucusRow {
  display: flex;
  justify-content: right;
  align-items: center;
  flex-direction: row;
}

.mucusAndPain input {
  width: 1rem;
  height: 1rem;
}

.painRow {
  display: flex;
  justify-content: left;
  align-items: center;
  flex-direction: row;
}

.dayInputButtonsRow {
  display: flex;
  justify-content: space-between;
}

.upDownBtn {
  margin: 0 .3rem 0 .3rem;
  width: 1.5rem;
}

.notes {
  font-size: 0.8rem;
  padding: 0.75rem;
  width: 100%;
  box-sizing: border-box;
}

.errors {
  color: #ff609d;
  font-size: .9rem;
  position: fixed;
  left: 0;
  bottom: 0;
  margin: 0.5rem;
}
