:root {
  color-scheme: light;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #18202a;
  background: #f6f7f9;
}

* {
  box-sizing: border-box;
}

body {
  width: 370px;
  margin: 0;
  background: #f6f7f9;
}

.shell {
  padding: 16px;
}

h1,
p {
  margin: 0;
}

h1 {
  font-size: 20px;
}

.eyebrow,
.current span,
.field span,
.section-title span {
  color: #657080;
  font-size: 12px;
}

.current {
  display: grid;
  gap: 4px;
  margin-top: 14px;
  border: 1px solid #e1e5eb;
  border-radius: 8px;
  background: #ffffff;
  padding: 10px;
}

.current strong {
  overflow: hidden;
  font-size: 13px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.quick-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 12px;
}

.field {
  display: grid;
  gap: 6px;
  margin-top: 14px;
}

input,
button {
  font: inherit;
}

input {
  width: 100%;
  height: 36px;
  border: 1px solid #d5dae2;
  border-radius: 8px;
  background: #ffffff;
  color: #18202a;
  padding: 0 10px;
}

button {
  height: 36px;
  border: 1px solid #c8ced8;
  border-radius: 8px;
  background: #ffffff;
  color: #18202a;
  cursor: pointer;
}

button:hover {
  background: #eef2f7;
}

.primary {
  width: 100%;
  margin-top: 10px;
  border-color: #7c3aed;
  background: #7c3aed;
  color: #ffffff;
}

.primary:hover {
  background: #6d32d2;
}

.check-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  color: #4a5565;
  font-size: 13px;
}

.check-row input {
  width: 15px;
  height: 15px;
  margin: 0;
}

.reminders {
  margin-top: 16px;
}

.section-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.section-title button {
  width: 32px;
  height: 30px;
}

.list {
  display: grid;
  gap: 8px;
  margin-top: 8px;
  max-height: 190px;
  overflow: auto;
}

.reminder {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 8px;
  align-items: center;
  border: 1px solid #e1e5eb;
  border-radius: 8px;
  background: #ffffff;
  padding: 9px;
}

.reminder strong,
.reminder span {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.reminder strong {
  font-size: 13px;
}

.reminder span,
.empty {
  color: #657080;
  font-size: 12px;
}

.reminder button {
  width: 34px;
  height: 30px;
}

.reminder .open-button {
  width: 48px;
}

.status {
  min-height: 18px;
  margin-top: 10px;
  color: #315f3c;
  font-size: 12px;
}

.pro-card { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 10px; align-items: center; margin-top: 10px; padding: 11px; border: 1px solid rgba(15, 118, 110, 0.22); border-radius: 8px; background: #eef8f6; }
.pro-card div { display: grid; gap: 2px; min-width: 0; }
.pro-card p { margin: 0; color: #0f766e; font-size: 11px; font-weight: 800; }
.pro-card strong { font-size: 13px; line-height: 1.3; }
.pro-card span { color: #526070; font-size: 11px; line-height: 1.35; }
.pro-card a { display: inline-flex; align-items: center; justify-content: center; min-width: 58px; height: 32px; border-radius: 8px; background: #0f766e; color: #fff; font-size: 13px; font-weight: 800; text-decoration: none; }
.pro-card a:hover { background: #0d665f; }
