:root {
  --bg: #0f1115;
  --surface: #161a22;
  --surface-2: #1d2230;
  --border: #262c3a;
  --fg: #e6e8ee;
  --muted: #8a93a6;
  --accent: #7c5cff;
  --accent-fg: #fff;
  --ok: #3ddc97;
  --warn: #ffc857;
  --danger: #ff6b6b;
  --info: #5ec2ff;
  --radius: 10px;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 15px;
  line-height: 1.5;
}

a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 2rem 1.25rem 4rem;
}

.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}
.site-header .brand {
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--fg);
}
.site-footer {
  text-align: center;
  padding: 2rem 1rem;
  color: var(--muted);
  border-top: 1px solid var(--border);
}

.hero { margin-bottom: 2rem; }
.hero h1 {
  font-size: 2rem;
  margin: 0 0 0.25rem;
  letter-spacing: -0.02em;
}
.muted { color: var(--muted); }

.tool-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1rem;
}

.tool-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.tool-card header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.5rem;
}
.tool-card h2 { font-size: 1.05rem; margin: 0; }
.tool-card p { color: var(--muted); margin: 0 0 0.5rem; }
.tool-card.is-disabled { opacity: 0.6; }

.badges { display: flex; gap: 0.25rem; flex-wrap: wrap; }
.badge {
  font-size: 0.7rem;
  padding: 0.15rem 0.45rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  color: var(--muted);
  text-transform: lowercase;
  letter-spacing: 0.02em;
}
.badge-lock { color: var(--warn); border-color: rgba(255, 200, 87, 0.4); }
.badge-soon { color: var(--info); border-color: rgba(94, 194, 255, 0.4); }

.btn {
  display: inline-block;
  padding: 0.55rem 0.9rem;
  background: var(--surface-2);
  color: var(--fg);
  border: 1px solid var(--border);
  border-radius: 8px;
  cursor: pointer;
  font: inherit;
  align-self: flex-start;
}
.btn:hover { background: #232a3a; text-decoration: none; }
.btn-primary { background: var(--accent); border-color: var(--accent); color: var(--accent-fg); }
.btn-primary:hover { filter: brightness(1.1); }
.btn:disabled,
.btn-primary:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  filter: none;
}
.btn:disabled:hover,
.btn-primary:disabled:hover { filter: none; background: var(--accent); }
.btn-danger { background: transparent; border-color: rgba(255, 107, 107, 0.4); color: var(--danger); }
.btn-disabled { opacity: 0.5; pointer-events: none; }
button.link {
  background: none;
  border: 0;
  color: var(--muted);
  cursor: pointer;
  font: inherit;
  padding: 0;
}
button.link:hover { color: var(--fg); }
.inline { display: inline; }

.centered {
  display: flex;
  justify-content: center;
  padding: 4rem 1rem;
}
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
}
.card.narrow { width: 100%; max-width: 420px; }

form label {
  display: block;
  margin-bottom: 1rem;
}
form label > span {
  display: block;
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 0.25rem;
}
input[type="text"],
input[type="password"],
input[type="date"],
input[type="file"],
select,
textarea {
  width: 100%;
  padding: 0.55rem 0.7rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--fg);
  font: inherit;
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--accent);
}

.alert {
  padding: 0.6rem 0.75rem;
  border-radius: 8px;
  margin-bottom: 1rem;
  border: 1px solid var(--border);
}
.alert-error { color: var(--danger); border-color: rgba(255, 107, 107, 0.4); }
.alert-warn  { color: var(--warn);   border-color: rgba(255, 200, 87, 0.4); }
.alert-ok    { color: var(--ok);     border-color: rgba(61, 220, 151, 0.4); }
.alert-info  { color: var(--info);   border-color: rgba(94, 194, 255, 0.4); }

.page-header {
  margin-bottom: 1.5rem;
}
.page-header h1 { font-size: 1.6rem; margin: 0 0 0.25rem; letter-spacing: -0.01em; }
.crumbs { color: var(--muted); font-size: 0.85rem; margin-bottom: 0.5rem; }
.crumbs a { color: var(--muted); }

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem 1rem;
}
.form-grid .full { grid-column: 1 / -1; }
@media (max-width: 640px) {
  .form-grid { grid-template-columns: 1fr; }
}

.toggle-group {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.toggle-group label {
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.5rem 0.75rem;
  cursor: pointer;
  margin: 0;
}
.toggle-group input { display: none; }
.toggle-group label:has(input:checked) {
  border-color: var(--accent);
  background: rgba(124, 92, 255, 0.1);
}

.summary {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 0.75rem;
  margin: 1rem 0 1.5rem;
}
.summary .stat {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
}
.summary .stat .k { color: var(--muted); font-size: 0.8rem; }
.summary .stat .v { font-size: 1.1rem; font-weight: 600; margin-top: 0.15rem; }
.summary .stat.ok    .v { color: var(--ok); }
.summary .stat.warn  .v { color: var(--warn); }
.summary .stat.danger .v { color: var(--danger); }

table {
  width: 100%;
  border-collapse: collapse;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
th, td {
  padding: 0.55rem 0.75rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
  vertical-align: top;
}
th {
  color: var(--muted);
  font-weight: 500;
  background: var(--surface-2);
  text-transform: uppercase;
  font-size: 0.72rem;
  letter-spacing: 0.05em;
}
tr:last-child td { border-bottom: 0; }
td.amount, th.amount { text-align: right; font-variant-numeric: tabular-nums; }
th.col-resolve, td.col-resolve { min-width: 240px; }

.resolve-options {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.resolve-option {
  display: grid;
  grid-template-columns: 14px 1fr;
  column-gap: 0.5rem;
  align-items: start;
  margin: 0;
  padding: 0;
  font-size: 0.82rem;
  line-height: 1.35;
  cursor: pointer;
}

.resolve-option input[type="checkbox"] {
  appearance: none;
  width: 14px;
  height: 14px;
  margin: 3px 0 0;       /* nudge to align with first line of text */
  align-self: start;
  border: 1px solid var(--border);
  background: var(--bg);
  border-radius: 3px;
  cursor: pointer;
  position: relative;
}
.resolve-option input[type="checkbox"]:hover { border-color: var(--muted); }
.resolve-option input[type="checkbox"]:checked {
  background: var(--accent);
  border-color: var(--accent);
}
.resolve-option input[type="checkbox"]:checked::after {
  content: "";
  position: absolute;
  left: 3px;
  top: 0;
  width: 4px;
  height: 8px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.resolve-option .cand-info {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  min-width: 0;
}
.resolve-option .cand-headline {
  font-weight: 500;
  color: var(--fg);
  font-variant-numeric: tabular-nums;
}
.resolve-option .cand-info small {
  font-size: 0.74rem;
  line-height: 1.3;
}

/* PDF rows: dim only when user-resolved (matched rows stay full strength
   so the MM-note column remains easy to read). */
.pdf-table tr.resolved:not([data-status="matched"]) td:not(.col-resolve) {
  opacity: 0.5;
}

/* MM rows: dim + strikethrough when linked from a resolved inaccurate row. */
.mm-table tr.resolved td {
  opacity: 0.5;
  text-decoration: line-through;
}
.mm-table tr.resolved td small { text-decoration: none; }

/* A candidate option whose target MM entry is already taken by another
   resolve column — shown but not selectable. */
.resolve-option:has(input:disabled) {
  opacity: 0.4;
  cursor: not-allowed;
}
.resolve-option input[type="checkbox"]:disabled { cursor: not-allowed; }
.resolve-option-claimed-note {
  font-size: 0.7rem;
  font-style: italic;
  color: var(--muted);
}

.manual-pick {
  display: block;
  width: 100%;
  max-width: 320px;
  margin: 0.5rem 0 0 auto;        /* push toward the right edge of the cell */
  padding: 0.45rem 0.65rem;
  font: inherit;
  font-size: 0.78rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;             /* match form-level selects */
  color: var(--fg);
  cursor: pointer;
  transition: border-color 0.15s ease;
  appearance: none;
  -webkit-appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--muted) 50%),
                    linear-gradient(135deg, var(--muted) 50%, transparent 50%);
  background-position: calc(100% - 14px) 50%, calc(100% - 9px) 50%;
  background-size: 5px 5px;
  background-repeat: no-repeat;
  padding-right: 1.75rem;
}
.manual-pick:hover { border-color: var(--muted); }
.manual-pick:focus { outline: none; border-color: var(--accent); }
.manual-pick option { background: var(--surface); color: var(--fg); }
.manual-pick option:disabled { color: var(--muted); }

/* MM-table exclude checkbox column */
.mm-table th.col-mm-exclude,
.mm-table td.col-mm-exclude {
  width: 60px;
  text-align: center;
}
.mm-table th.col-mm-exclude {
  font-size: 0.62rem;
}
.mm-exclude-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  margin: 0;
}
.mm-exclude {
  appearance: none;
  width: 14px;
  height: 14px;
  border: 1px solid var(--border);
  background: var(--bg);
  border-radius: 3px;
  cursor: pointer;
  position: relative;
}
.mm-exclude:hover { border-color: var(--muted); }
.mm-exclude:checked {
  background: var(--muted);
  border-color: var(--muted);
}
.mm-exclude:checked::after {
  content: "";
  position: absolute;
  left: 3px;
  top: 0;
  width: 4px;
  height: 8px;
  border: solid var(--bg);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

/* Excluded MM rows: more dim than resolved, dashed text. */
.mm-table tr.excluded td:not(.col-mm-exclude) {
  opacity: 0.3;
  text-decoration: line-through dashed;
}
.mm-table tr.excluded td small { text-decoration: none; }

/* Extended-cycle MM rows are hidden via the HTML `hidden` attribute on the
   server, then revealed by JS when the "Show all MM data" toggle flips on.
   This rule just tints them when visible so they read as boundary cases. */
.mm-table tr.mm-extended td {
  background: rgba(255, 200, 87, 0.04);
}

.mm-show-all-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  color: var(--muted);
  cursor: pointer;
  margin-left: 0.6rem;
}
.mm-show-all-toggle input[type="checkbox"] {
  appearance: none;
  width: 14px;
  height: 14px;
  border: 1px solid var(--border);
  background: var(--bg);
  border-radius: 3px;
  cursor: pointer;
  position: relative;
}
.mm-show-all-toggle input[type="checkbox"]:checked {
  background: var(--muted);
  border-color: var(--muted);
}
.mm-show-all-toggle input[type="checkbox"]:checked::after {
  content: "";
  position: absolute;
  left: 3px;
  top: 0;
  width: 4px;
  height: 8px;
  border: solid var(--bg);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.mm-show-all-toggle:hover { color: var(--fg); }

.what-to-address { margin-top: 1.5rem; }
.address-table th.col-action,
.address-table td.col-action { width: 90px; }
.address-table td { vertical-align: middle; }
.address-table th.col-task-check,
.address-table td.col-task-check {
  width: 36px;
  text-align: center;
  padding-left: 0.6rem;
  padding-right: 0.4rem;
}
.task-check {
  appearance: none;
  width: 16px;
  height: 16px;
  border: 1px solid var(--border);
  background: var(--bg);
  border-radius: 4px;
  cursor: pointer;
  position: relative;
  vertical-align: middle;
}
.task-check:hover { border-color: var(--muted); }
.task-check:checked {
  background: var(--ok);
  border-color: var(--ok);
}
.task-check:checked::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 1px;
  width: 4px;
  height: 8px;
  border: solid var(--bg);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.address-table tr.done td:not(.col-task-check) {
  opacity: 0.45;
  text-decoration: line-through;
}
.address-table tr.done td .row-status,
.address-table tr.done td small { text-decoration: none; }

.verification { margin-top: 1.5rem; }
.verification-summary .stat .v { font-size: 1rem; }
.verification-summary .stat .muted { font-size: 0.72rem; margin-top: 0.15rem; }

.all-resolved-banner { margin-top: 1rem; }

.shoulder-summary { margin-top: 1.5rem; }
.shoulder-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.shoulder-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-variant-numeric: tabular-nums;
  overflow: hidden;
}
.shoulder-details summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: baseline;
  gap: 1rem;
  padding: 0.65rem 0.95rem;
  user-select: none;
}
.shoulder-details summary::-webkit-details-marker { display: none; }
.shoulder-details summary::before {
  content: "▸";
  color: var(--muted);
  font-size: 0.8rem;
  width: 0.8rem;
  display: inline-block;
}
.shoulder-details[open] summary::before { content: "▾"; color: var(--fg); }
.shoulder-details summary:hover { background: var(--surface-2); }
.shoulder-name { font-weight: 500; flex-grow: 1; }
.shoulder-meta { font-size: 0.76rem; }
.shoulder-amount { color: var(--ok); flex-shrink: 0; font-weight: 500; }

.shoulder-breakdown {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--border);
  background: var(--bg);
}
.shoulder-breakdown li {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  grid-template-rows: auto auto;
  gap: 0.15rem 0.75rem;
  padding: 0.55rem 0.95rem 0.55rem 2rem;
  font-size: 0.82rem;
  border-bottom: 1px solid var(--border);
}
.shoulder-breakdown li:last-child { border-bottom: 0; }
.bd-tran { color: var(--muted); }
.bd-merchant { color: var(--fg); }
.bd-amount {
  color: var(--fg);
  text-align: right;
  font-weight: 500;
}
.bd-meta {
  grid-column: 1 / -1;
  color: var(--muted);
  font-size: 0.74rem;
}

/* Per-row MM detail toggle (rightmost column) */
.pdf-table th.col-detail-toggle,
.pdf-table td.col-detail-toggle {
  width: 32px;
  text-align: center;
  padding-left: 0.25rem;
  padding-right: 0.5rem;
}
.row-toggle {
  background: transparent;
  border: 1px solid transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 0.85rem;
  line-height: 1;
  padding: 0.2rem 0.45rem;
  border-radius: 6px;
  transition: color 0.15s ease, background-color 0.15s ease, border-color 0.15s ease;
}
.row-toggle:hover {
  color: var(--fg);
  background: var(--surface-2);
  border-color: var(--border);
}
.row-toggle[aria-expanded="true"] {
  color: var(--fg);
  background: var(--surface-2);
  border-color: var(--border);
}

.pdf-table tr.row-detail td {
  background: rgba(124, 92, 255, 0.05);
  padding: 0.6rem 1.25rem;
  font-size: 0.82rem;
  border-bottom: 1px solid var(--border);
}
.row-detail-content { line-height: 1.4; }
.row-detail-content .amount-inline {
  font-variant-numeric: tabular-nums;
  font-weight: 500;
}

/* Page header w/ help trigger */
.page-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.btn-ghost {
  background: transparent;
  border-color: var(--border);
  color: var(--muted);
  font-size: 0.82rem;
  padding: 0.3rem 0.6rem;
}
.btn-ghost:hover { color: var(--fg); border-color: var(--muted); background: transparent; text-decoration: none; }
.help-trigger::before { content: "?  "; opacity: 0.6; }

/* Help modal */
.help-dialog {
  background: var(--surface);
  color: var(--fg);
  border: 1px solid var(--border);
  border-radius: 12px;
  max-width: 720px;
  width: min(92vw, 720px);
  max-height: 85vh;
  overflow: auto;
  padding: 1.5rem 1.75rem 1.25rem;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.55);
}
.help-dialog::backdrop {
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(2px);
}
.help-dialog h2 {
  margin: 0 0 0.75rem;
  font-size: 1.3rem;
  letter-spacing: -0.01em;
}
.help-dialog h3 {
  margin: 0 0 0.5rem;
  font-size: 0.92rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 500;
}
.help-section {
  padding: 0.75rem 0;
  border-top: 1px solid var(--border);
}
.help-section:first-of-type { border-top: 0; padding-top: 0.25rem; }
.help-section p { margin: 0.4rem 0; line-height: 1.55; }
.help-section ul, .help-section ol {
  margin: 0.4rem 0;
  padding-left: 1.25rem;
  line-height: 1.55;
}
.help-section li { margin: 0.25rem 0; }
.help-section code {
  background: var(--surface-2);
  padding: 0.05rem 0.35rem;
  border-radius: 4px;
  font-size: 0.85em;
}
.help-section .row-status { margin-right: 0.35rem; }

.help-close {
  position: absolute;
  top: 0.6rem;
  right: 0.75rem;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--muted);
  font-size: 1.2rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}
.help-close:hover { color: var(--fg); border-color: var(--muted); }

.help-actions {
  display: flex;
  justify-content: flex-end;
  gap: 0.5rem;
  margin-top: 1rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border);
}


.row-status {
  display: inline-block;
  padding: 0.1rem 0.45rem;
  border-radius: 999px;
  font-size: 0.72rem;
  border: 1px solid var(--border);
}
.row-status.matched   { color: var(--ok);    border-color: rgba(61, 220, 151, 0.4); }
.row-status.missing   { color: var(--danger); border-color: rgba(255, 107, 107, 0.5); }
.row-status.inaccurate { color: var(--warn); border-color: rgba(255, 200, 87, 0.5); }
.row-status.duplicate { color: var(--info);  border-color: rgba(94, 194, 255, 0.5); }
.row-status.unused    { color: var(--warn);  border-color: rgba(255, 200, 87, 0.5); }

.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin: 1.5rem 0 0.75rem;
}
.section-heading h2 { font-size: 1.05rem; margin: 0; }

.actions {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

details.help {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  margin-bottom: 1.25rem;
}
details.help summary { cursor: pointer; color: var(--muted); }
details.help[open] summary { color: var(--fg); margin-bottom: 0.5rem; }
details.help ul { margin: 0.25rem 0 0 1.1rem; padding: 0; }

/* Money Manager analyzer */
.chart-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin: 1.5rem 0;
}
.chart-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem 1.25rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  min-width: 0;
}
.chart-card-wide { grid-column: 1 / -1; }
.chart-card-head {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  margin-bottom: 0.25rem;
}
.chart-card-head h2 { font-size: 1rem; margin: 0; }
.chart-card-head .muted { font-size: 0.78rem; }
.chart-wrap {
  position: relative;
  height: 340px;
  width: 100%;
}
.chart-wrap-donut { height: 300px; }
@media (max-width: 720px) {
  .chart-grid { grid-template-columns: 1fr; }
  .chart-card-wide { grid-column: auto; }
}

.section-block { margin: 1.75rem 0; }

.mini-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 0.6rem;
}
.mini-stat {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.6rem 0.85rem;
}
.mini-stat .k { color: var(--muted); font-size: 0.74rem; }
.mini-stat .v { font-size: 1rem; font-weight: 600; margin-top: 0.1rem; font-variant-numeric: tabular-nums; }

details.data-dump {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.65rem 1rem;
  margin: 0.5rem 0;
}
details.data-dump summary {
  cursor: pointer;
  color: var(--muted);
  font-size: 0.88rem;
}
details.data-dump[open] summary { color: var(--fg); margin-bottom: 0.6rem; }
details.data-dump table {
  margin-top: 0.5rem;
  font-size: 0.82rem;
}
.dump-text {
  font-size: 0.82rem;
  line-height: 1.6;
  color: var(--muted);
  word-break: break-word;
  margin: 0;
}

.schema-table {
  width: 100%;
  margin-top: 0.5rem;
  font-size: 0.82rem;
}
.schema-table th, .schema-table td {
  padding: 0.4rem 0.6rem;
  font-size: 0.82rem;
}
.schema-table code {
  background: var(--surface-2);
  padding: 0.05rem 0.35rem;
  border-radius: 4px;
  font-size: 0.82em;
}
