.streak {
  width: 96px;
  padding: 0 12px;
}

.streak span {
  white-space: nowrap;
}

.streak small {
  display: block;
  margin-top: 2px;
  color: #c49c6c;
  font-size: 8px;
  font-weight: 500;
}

.learner-switcher {
  display: flex;
  gap: 4px;
  padding: 4px;
  border-radius: 11px;
  background: #fff4df;
}

.learner-switcher button {
  border: 0;
  border-radius: 8px;
  padding: 8px 11px;
  background: transparent;
  color: #a28763;
  font-size: 10px;
  cursor: pointer;
}

.learner-switcher button.active {
  background: #fff;
  color: #426e60;
  font-weight: 700;
  box-shadow: 0 2px 7px #b89c7330;
}

.listen-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  margin: 4px 0 12px;
  padding: 10px 18px;
  border: 0;
  border-radius: 999px;
  background: #fff0c9;
  color: #98672e;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 5px 14px #b8894430;
}

.listen-btn.listening {
  background: #daf1e8;
  color: #39745f;
}

.answer-option .option-number {
  display: none;
}

.answer-option.younger-option {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 64px;
  text-align: left;
  font-size: 20px;
}

.answer-option.younger-option .option-number {
  display: grid;
  flex: 0 0 38px;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  background: #fff0c9;
  color: #98672e;
  font-size: 18px;
  font-weight: 800;
}

.younger-mode .help-actions button {
  min-height: 52px;
  font-size: 16px;
}

.younger-mode #lesson-ready {
  min-height: 52px;
  font-size: 16px;
  font-weight: 800;
}

.week-day {
  font: inherit;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}

.week-day:not(:disabled):hover {
  transform: translateY(-2px);
  border-color: #9bcdb9;
  box-shadow: 0 6px 16px #527c6c15;
}

.week-day.selected {
  border-color: #5da887;
  box-shadow: inset 0 0 0 1px #5da887;
}

.week-day:disabled {
  cursor: default;
  opacity: .58;
}

.parent-wish-row .wish-row-actions {
  display: flex;
  gap: 5px;
}

.parent-wish-row .wish-edit-button,
.parent-wish-row .wish-save-button {
  color: #4d9277;
}

.parent-wish-row.editing {
  display: grid;
  grid-template-columns: minmax(120px, 1fr) 82px auto;
  gap: 7px;
}

.parent-wish-row.editing input {
  min-width: 0;
  border: 1px solid #dce8e3;
  border-radius: 8px;
  padding: 8px 9px;
  color: #405653;
  font: inherit;
}

#selected-day-meta {
  display: block;
  margin-top: 4px;
}

#reset-btn.hidden-action {
  display: none;
}

@media (max-width: 760px) {
  .learner-switcher {
    order: 3;
    width: 100%;
    justify-content: center;
  }

  .topbar {
    height: auto;
    min-height: 70px;
    flex-wrap: wrap;
    padding: 12px 0;
  }
  .streak {
    width: 84px;
    padding: 0 8px;
  }

  .parent-wish-row.editing {
    grid-template-columns: 1fr 78px;
  }

  .parent-wish-row.editing .wish-row-actions {
    grid-column: 1 / 3;
    justify-content: flex-end;
  }
}
