.reminder-editor {
  background: linear-gradient(145deg, #f7fbfa, #edf7f4);
  border-color: #d8e9e5;
}
.reminder-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  cursor: pointer;
}
.reminder-toggle > span {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.reminder-toggle small {
  color: #768a90;
  font-size: 11px;
  font-weight: 500;
}
.reminder-toggle input {
  appearance: none;
  width: 48px;
  height: 28px;
  margin: 0;
  padding: 3px;
  border: 0;
  border-radius: 999px;
  background: #c8d3d1;
  transition: .2s;
  flex: 0 0 auto;
}
.reminder-toggle input::before {
  content: "";
  display: block;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 7px #173c4d2b;
  transition: .2s;
}
.reminder-toggle input:checked { background: #20a498; }
.reminder-toggle input:checked::before { transform: translateX(20px); }
.reminder-fields {
  display: grid;
  grid-template-columns: 1fr 1fr 1.55fr;
  gap: 9px;
  margin-top: 15px;
}
.reminder-fields label > span {
  display: block;
  margin: 0 0 6px;
  color: #587078;
  font-size: 11px;
  font-weight: 700;
}
.reminder-fields select {
  width: 100%;
  height: 45px;
  padding: 0 12px;
  border: 1px solid #d2dfdc;
  border-radius: 13px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  outline: 0;
}
.reminder-fields select:focus {
  border-color: #69bdb5;
  box-shadow: 0 0 0 4px #46b6aa12;
}
.reminder-hint {
  margin: 10px 1px 0;
  color: #70848b;
  font-size: 11px;
  line-height: 1.6;
}
.reminder-badge {
  display: inline-flex;
  align-items: center;
  margin: 0 0 11px;
  padding: 5px 9px;
  border-radius: 999px;
  background: #fff1d7;
  color: #966012;
  font-size: 11px;
  font-weight: 800;
}
.reminder-badge::before {
  content: "";
  width: 7px;
  height: 7px;
  margin-right: 6px;
  border-radius: 50%;
  background: #e69b2e;
  box-shadow: 0 0 0 3px #f5c87933;
}
@media (max-width: 420px) {
  .reminder-fields { grid-template-columns: .8fr .8fr 1.4fr; }
  .reminder-fields select { padding: 0 8px; font-size: 13px; }
}
