/* ── Chores Module Styles ─────────────────────────────────────────── */
/* Designed to sit alongside the existing Bates PM stylesheet.        */
/* Uses the same CSS variable names the main app defines.             */

/* ── Chores Tab Panel ─────────────────────────────────────────────── */
#chores-panel {
  padding: 0;
}

/* ── Section header row ───────────────────────────────────────────── */
.chores-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.chores-header h2 {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text, #1a1a2e);
}

/* ── Pending approvals banner ─────────────────────────────────────── */
.chores-approvals-banner {
  background: linear-gradient(135deg, #fff7ed, #fef3c7);
  border: 1.5px solid #f59e0b;
  border-radius: 10px;
  padding: 0.85rem 1rem;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.88rem;
  color: #92400e;
  font-weight: 600;
  cursor: pointer;
  transition: box-shadow 0.15s;
}
.chores-approvals-banner:hover {
  box-shadow: 0 2px 8px rgba(245,158,11,0.25);
}
.chores-approvals-banner .banner-icon {
  font-size: 1.2rem;
  flex-shrink: 0;
}
.chores-approvals-banner .banner-count {
  background: #f59e0b;
  color: #fff;
  border-radius: 20px;
  padding: 1px 8px;
  font-size: 0.78rem;
  font-weight: 700;
  margin-left: auto;
}

/* ── Chore Groups ─────────────────────────────────────────────────── */
.chore-group-card {
  background: var(--card-bg, #fff);
  border-radius: 12px;
  border: 1.5px solid var(--border, #e5e7eb);
  margin-bottom: 1rem;
  overflow: hidden;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
  transition: box-shadow 0.2s;
}
.chore-group-card:hover {
  box-shadow: 0 3px 12px rgba(0,0,0,0.1);
}
.chore-group-header {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 1rem;
  background: var(--surface, #f8f9fa);
  border-bottom: 1px solid var(--border, #e5e7eb);
  cursor: pointer;
  user-select: none;
}
.chore-group-header:hover {
  background: var(--hover-bg, #f1f3f5);
}
.chore-group-title {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text, #1a1a2e);
  flex: 1;
}
.chore-group-reward {
  font-size: 0.82rem;
  font-weight: 600;
  color: #16a34a;
  background: #dcfce7;
  border-radius: 20px;
  padding: 2px 10px;
  white-space: nowrap;
}
.chore-group-reward.no-reward {
  color: #6b7280;
  background: #f3f4f6;
}
.chore-group-chevron {
  font-size: 0.75rem;
  color: var(--muted, #9ca3af);
  transition: transform 0.2s;
  flex-shrink: 0;
}
.chore-group-card.collapsed .chore-group-chevron {
  transform: rotate(-90deg);
}
.chore-group-actions {
  display: flex;
  gap: 0.35rem;
  margin-left: 0.25rem;
}
.chore-group-body {
  padding: 0.5rem 0;
}
.chore-group-card.collapsed .chore-group-body {
  display: none;
}

/* Mandatory warning strip */
.chore-mandatory-warning {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: #fef2f2;
  border-top: 1px solid #fecaca;
  padding: 0.5rem 1rem;
  font-size: 0.8rem;
  color: #dc2626;
  font-weight: 600;
}

/* ── Individual Chore Row ─────────────────────────────────────────── */
.chore-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.7rem 1rem;
  border-bottom: 1px solid var(--border, #e5e7eb);
  transition: background 0.15s;
}
.chore-item:last-child {
  border-bottom: none;
}
.chore-item:hover {
  background: var(--hover-bg, #f9fafb);
}
.chore-item.chore-done {
  opacity: 0.6;
}
.chore-item.chore-pending-approval {
  background: #fffbeb;
}

/* Checkbox / status button */
.chore-check-btn {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 2px solid var(--border, #d1d5db);
  background: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.85rem;
  transition: all 0.15s;
  margin-top: 1px;
}
.chore-check-btn:hover {
  border-color: var(--primary, #6366f1);
  background: #eef2ff;
}
.chore-check-btn.checked {
  background: #16a34a;
  border-color: #16a34a;
  color: #fff;
}
.chore-check-btn.pending {
  background: #f59e0b;
  border-color: #f59e0b;
  color: #fff;
  cursor: default;
}
.chore-check-btn.disabled-check {
  cursor: default;
  opacity: 0.5;
}

.chore-info {
  flex: 1;
  min-width: 0;
}
.chore-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text, #1a1a2e);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.chore-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.25rem;
}
.chore-tag {
  font-size: 0.73rem;
  padding: 1px 7px;
  border-radius: 20px;
  font-weight: 600;
  white-space: nowrap;
}
.tag-mandatory   { background: #fef2f2; color: #dc2626; }
.tag-weekly      { background: #eff6ff; color: #2563eb; }
.tag-assignee    { background: #f5f3ff; color: #7c3aed; }
.tag-reward      { background: #f0fdf4; color: #16a34a; }
.tag-pending     { background: #fffbeb; color: #d97706; }
.tag-approved    { background: #f0fdf4; color: #16a34a; }

.chore-item-actions {
  display: flex;
  gap: 0.25rem;
  flex-shrink: 0;
}

/* ── Standalone chore reward badge ───────────────────────────────── */
.chore-standalone-reward {
  font-size: 0.8rem;
  font-weight: 700;
  color: #16a34a;
  background: #dcfce7;
  border-radius: 20px;
  padding: 2px 9px;
  white-space: nowrap;
  align-self: center;
  flex-shrink: 0;
}

/* ── Weekly summary row ───────────────────────────────────────────── */
.chores-week-summary {
  background: var(--surface, #f8f9fa);
  border: 1.5px solid var(--border, #e5e7eb);
  border-radius: 10px;
  padding: 0.85rem 1rem;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.chores-week-summary .wsummary-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--muted, #6b7280);
  flex: 1;
}
.wsummary-chip {
  font-size: 0.8rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
}
.wsummary-chip.earned   { background: #dcfce7; color: #16a34a; }
.wsummary-chip.blocked  { background: #fef2f2; color: #dc2626; }
.wsummary-chip.pending  { background: #fffbeb; color: #d97706; }

/* ── Modals ───────────────────────────────────────────────────────── */
.chores-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  animation: cmFadeIn 0.15s ease;
}
@keyframes cmFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.chores-modal {
  background: var(--card-bg, #fff);
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
  padding: 1.5rem;
  width: 100%;
  max-width: 480px;
  max-height: 90vh;
  overflow-y: auto;
  animation: cmSlideUp 0.18s ease;
}
@keyframes cmSlideUp {
  from { transform: translateY(16px); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}
.chores-modal h3 {
  margin: 0 0 1.25rem;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text, #1a1a2e);
}
.chores-modal label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--muted, #6b7280);
  margin-bottom: 0.3rem;
  margin-top: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.chores-modal label:first-of-type {
  margin-top: 0;
}
.chores-modal input[type="text"],
.chores-modal input[type="number"],
.chores-modal select,
.chores-modal textarea {
  width: 100%;
  box-sizing: border-box;
  padding: 0.55rem 0.75rem;
  border: 1.5px solid var(--border, #e5e7eb);
  border-radius: 8px;
  font-size: 0.9rem;
  color: var(--text, #1a1a2e);
  background: var(--input-bg, #fff);
  outline: none;
  transition: border-color 0.15s;
}
.chores-modal input:focus,
.chores-modal select:focus,
.chores-modal textarea:focus {
  border-color: var(--primary, #6366f1);
}
.chores-modal .assignee-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.25rem;
}
.assignee-chip {
  padding: 0.35rem 0.85rem;
  border-radius: 20px;
  border: 2px solid var(--border, #e5e7eb);
  background: #fff;
  font-size: 0.83rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.15s;
  color: var(--text, #374151);
}
.assignee-chip.selected {
  border-color: var(--primary, #6366f1);
  background: #eef2ff;
  color: var(--primary, #6366f1);
}
.chores-modal .toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 0.85rem;
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--border, #f3f4f6);
}
.chores-modal .toggle-row:last-of-type { border-bottom: none; }
.toggle-row-label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text, #1a1a2e);
}
.toggle-row-sub {
  font-size: 0.77rem;
  color: var(--muted, #9ca3af);
  margin-top: 1px;
}
/* Reuse any existing toggle/switch styles; define fallback here */
.cm-toggle {
  position: relative;
  width: 40px;
  height: 22px;
  flex-shrink: 0;
}
.cm-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}
.cm-toggle-slider {
  position: absolute;
  inset: 0;
  background: #d1d5db;
  border-radius: 22px;
  cursor: pointer;
  transition: background 0.2s;
}
.cm-toggle-slider::before {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  left: 3px;
  top: 3px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.2s;
}
.cm-toggle input:checked + .cm-toggle-slider {
  background: var(--primary, #6366f1);
}
.cm-toggle input:checked + .cm-toggle-slider::before {
  transform: translateX(18px);
}

.chores-modal .modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 0.6rem;
  margin-top: 1.5rem;
}

/* ── Approval modal specific ──────────────────────────────────────── */
.approval-chore-info {
  background: var(--surface, #f8f9fa);
  border-radius: 10px;
  padding: 0.85rem 1rem;
  margin-bottom: 1rem;
}
.approval-chore-info .aci-name {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text, #1a1a2e);
}
.approval-chore-info .aci-meta {
  font-size: 0.82rem;
  color: var(--muted, #6b7280);
  margin-top: 0.25rem;
}
.approval-chore-info .aci-reward {
  font-size: 0.88rem;
  font-weight: 700;
  color: #16a34a;
  margin-top: 0.4rem;
}

/* ── Bulk approvals list ──────────────────────────────────────────── */
.approvals-list-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--border, #f3f4f6);
}
.approvals-list-item:last-child { border-bottom: none; }
.ali-name {
  flex: 1;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text, #1a1a2e);
}
.ali-child {
  font-size: 0.78rem;
  color: var(--muted, #9ca3af);
}

/* ── Empty state ──────────────────────────────────────────────────── */
.chores-empty {
  text-align: center;
  padding: 2.5rem 1rem;
  color: var(--muted, #9ca3af);
}
.chores-empty .empty-icon {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}
.chores-empty p {
  font-size: 0.9rem;
  margin: 0 0 0.25rem;
  font-weight: 600;
  color: var(--text, #374151);
}
.chores-empty small {
  font-size: 0.8rem;
}

/* ── Child view - simplified chore list ──────────────────────────── */
.child-chore-section {
  margin-bottom: 1.25rem;
}
.child-chore-section-title {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted, #9ca3af);
  margin-bottom: 0.6rem;
  padding: 0 0.25rem;
}
.child-earning-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(135deg, #f0fdf4, #dcfce7);
  border: 1.5px solid #bbf7d0;
  border-radius: 10px;
  padding: 0.85rem 1rem;
  margin-bottom: 1rem;
}
.child-earning-summary.blocked {
  background: linear-gradient(135deg, #fef2f2, #fee2e2);
  border-color: #fecaca;
}
.ces-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: #166534;
}
.child-earning-summary.blocked .ces-label { color: #991b1b; }
.ces-amount {
  font-size: 1.1rem;
  font-weight: 800;
  color: #16a34a;
}
.child-earning-summary.blocked .ces-amount { color: #dc2626; }

/* ── Utility button sizes for icon-only actions ───────────────────── */
.btn-icon-sm {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  border: 1.5px solid var(--border, #e5e7eb);
  background: var(--card-bg, #fff);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  transition: all 0.15s;
  color: var(--muted, #6b7280);
}
.btn-icon-sm:hover {
  background: var(--hover-bg, #f3f4f6);
  color: var(--text, #1a1a2e);
}
.btn-icon-sm.danger:hover {
  background: #fef2f2;
  border-color: #fca5a5;
  color: #dc2626;
}

/* ── Responsive ───────────────────────────────────────────────────── */
@media (max-width: 480px) {
  .chores-modal {
    padding: 1.1rem;
    border-radius: 12px;
  }
  .chore-group-header {
    flex-wrap: wrap;
  }
}

/* ── v2 rebuild additions ─────────────────────────────────────────── */

/* Core type section labels */
.chore-section-label {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0.75rem 0 0.35rem;
  padding: 0 0.25rem;
}
.tag-mandatory-label { color: #dc2626; }
.tag-optional-label  { color: #7c3aed; }

/* Optional tag */
.tag-optional  { background: #f5f3ff; color: #7c3aed; }

/* Recurrence tag */
.tag-recur { background: #eff6ff; color: #2563eb; }

/* Activity type tag */
.tag-activity { background: #f0fdf4; color: #15803d; }

/* Emoji prefix in chore names */
.chore-emoji {
  font-size: 1rem;
  margin-right: 0.15rem;
  flex-shrink: 0;
}

/* Learning outcome shown on completion */
.chore-learning {
  font-size: 0.77rem;
  color: #15803d;
  margin-top: 0.2rem;
  font-style: italic;
}

/* Reward type badges */
.chore-reward-savings  { background: #ecfdf5; color: #0d9488; }
.chore-reward-activity { background: #fef9c3; color: #a16207; }
.chore-reward-gift     { background: #fdf2f8; color: #c026d3; }

/* Pool item row */
.chore-pool-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.7rem 1rem;
  border-bottom: 1px solid var(--border, #e5e7eb);
}
.chore-pool-item:last-child { border-bottom: none; }

/* Radio chip selectors in chore modal */
.cm-radio-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.85rem;
  border-radius: 20px;
  border: 2px solid var(--border, #e5e7eb);
  background: #fff;
  font-size: 0.83rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.15s;
  color: var(--text, #374151);
}
.cm-radio-chip input[type="radio"] {
  display: none;
}
.cm-radio-chip.selected {
  border-color: var(--primary, #6366f1);
  background: #eef2ff;
  color: var(--primary, #6366f1);
}

/* Branding lock notice */
.chore-branding-lock {
  background: #fffbeb;
  border: 1px solid #fde68a;
  border-radius: 8px;
  padding: 0.6rem 0.85rem;
  font-size: 0.82rem;
  color: #92400e;
  margin-bottom: 0.85rem;
}

/* Library section headers */
.chore-lib-band-title {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted, #6b7280);
  margin: 1rem 0 0.4rem;
  padding-bottom: 0.3rem;
  border-bottom: 1px solid var(--border, #e5e7eb);
}
.chore-lib-item {
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--border, #f3f4f6);
}
.chore-lib-item:last-child { border-bottom: none; }

/* Compliance report table */
/* ── Report: header ─────────────────────────────────────────────── */
.chore-report-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.75rem;
  flex-wrap: wrap;
}
.chore-report-subtitle {
  font-size: 0.78rem;
  color: var(--muted, #6b7280);
  margin-top: 0.15rem;
}
.chore-report-range-select {
  font-size: 0.83rem;
  padding: 0.35rem 0.65rem;
  border: 1.5px solid var(--border, #d1d5db);
  border-radius: 8px;
  background: var(--card, #fff);
  color: var(--text, #1a1a2e);
  cursor: pointer;
  flex-shrink: 0;
}

/* ── Report: section tabs ───────────────────────────────────────── */
.chore-report-tabs {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1rem;
  border-bottom: 2px solid var(--border, #e5e7eb);
  padding-bottom: 0;
  flex-wrap: wrap;
}
.chore-report-tab {
  background: none;
  border: none;
  border-bottom: 2.5px solid transparent;
  padding: 0.4rem 0.75rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--muted, #6b7280);
  cursor: pointer;
  margin-bottom: -2px;
  border-radius: 0;
  transition: color 0.15s, border-color 0.15s;
}
.chore-report-tab:hover { color: var(--text, #1a1a2e); }
.chore-report-tab.active {
  color: var(--primary, #6366f1);
  border-bottom-color: var(--primary, #6366f1);
}

/* ── Report: shared section wrapper ────────────────────────────── */
.chore-report-section { padding: 0.1rem 0; }
.chore-report-section-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.4rem;
  color: var(--muted, #6b7280);
}
.chore-report-label-overdue { color: #b45309; }
.chore-report-label-due     { color: #1d4ed8; }

/* ── Report: compliance table ──────────────────────────────────── */
.chore-report-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
}
.chore-report-table th {
  text-align: left;
  font-size: 0.73rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--muted, #6b7280);
  padding: 0.4rem 0.5rem;
  border-bottom: 2px solid var(--border, #e5e7eb);
  white-space: nowrap;
}
.chore-report-table td {
  padding: 0.5rem;
  border-bottom: 1px solid var(--border, #f3f4f6);
  color: var(--text, #1a1a2e);
}
.chore-report-table tr:last-child td { border-bottom: none; }
.chore-report-earned { color: #16a34a; font-weight: 700; }
.chore-report-muted  { color: var(--muted, #6b7280); }
.chore-report-pct {
  font-size: 0.75rem;
  color: var(--muted, #6b7280);
  font-weight: 400;
}
.chore-report-totals {
  font-size: 0.82rem;
  color: var(--muted, #6b7280);
  margin-top: 0.5rem;
  padding-top: 0.4rem;
  border-top: 1px solid var(--border, #e5e7eb);
}

/* ── Report: progress bars ─────────────────────────────────────── */
.chore-report-progress-child {
  background: var(--surface, #f9fafb);
  border: 1px solid var(--border, #e5e7eb);
  border-radius: 10px;
  padding: 0.75rem 0.9rem;
  margin-bottom: 0.6rem;
}
.chore-report-progress-name {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text, #1a1a2e);
  margin-bottom: 0.5rem;
}
.chore-report-bar-label {
  font-size: 0.77rem;
  color: var(--muted, #6b7280);
  font-weight: 600;
  margin-bottom: 0.2rem;
  display: flex;
  justify-content: space-between;
}
.chore-report-bar-track {
  height: 10px;
  background: var(--border, #e5e7eb);
  border-radius: 99px;
  overflow: hidden;
}
.chore-report-bar-fill {
  height: 100%;
  border-radius: 99px;
  transition: width 0.3s ease;
  min-width: 0;
}

/* ── Report: skills ────────────────────────────────────────────── */
.chore-report-skill-tag {
  display: inline-block;
  margin: 0.2rem 0.15rem;
}
.chore-report-skills-child {
  margin-bottom: 0.6rem;
}
.chore-report-skills-child-name {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--muted, #6b7280);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.25rem;
}

/* ── Report: status (overdue / coming due) ─────────────────────── */
.chore-report-status-clear {
  font-size: 0.9rem;
  color: #16a34a;
  font-weight: 600;
  padding: 0.75rem 0;
}
.chore-report-status-group { margin-bottom: 0.5rem; }
.chore-report-status-row {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  padding: 0.35rem 0;
  border-bottom: 1px solid var(--border, #f3f4f6);
  flex-wrap: wrap;
}
.chore-report-status-row:last-child { border-bottom: none; }
.chore-report-status-emoji { font-size: 1rem; }
.chore-report-status-name  { font-weight: 600; flex: 1; min-width: 6rem; }
.chore-report-status-child { font-size: 0.8rem; color: var(--muted, #6b7280); }
.chore-report-status-recur { font-size: 0.7rem !important; }



/* ── 2e: Library filter bar ──────────────────────────────────────── */
.chore-lib-filters {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
  margin-bottom: 0.75rem;
  align-items: center;
}
.chore-lib-filters select,
.chore-lib-filters input[type="search"] {
  font-size: 0.83rem;
  padding: 0.3rem 0.55rem;
  border: 1.5px solid var(--border, #d1d5db);
  border-radius: 6px;
  background: var(--card, #fff);
  color: var(--text, #1a1a2e);
}
.chore-lib-filters input[type="search"] {
  min-width: 8rem;
}

/* ── 2g: Child view — what I learnt / how it helped ─────────────── */
.chore-what-learnt {
  color: #1d4ed8;
  font-size: 0.8rem;
  margin-top: 0.25rem;
}
.chore-how-helped {
  color: #047857;
  font-size: 0.8rem;
  margin-top: 0.15rem;
}
