:root {
  --bg: #f5f7f8;
  --panel: #ffffff;
  --ink: #172025;
  --muted: #68757d;
  --line: #dce3e6;
  --green: #0b8f70;
  --green-soft: #e7f6f1;
  --red: #ca3a31;
  --blue: #2563eb;
  --amber: #a96b00;
  --shadow: 0 12px 28px rgba(28, 43, 51, 0.08);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
}

button,
input,
select,
textarea {
  font: inherit;
}

[hidden] {
  display: none !important;
}

.login-screen {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
  background:
    linear-gradient(rgba(9, 17, 19, 0.42), rgba(9, 17, 19, 0.48)),
    radial-gradient(circle at 50% 20%, rgba(10, 151, 121, 0.35), transparent 32%),
    linear-gradient(160deg, #172025 0%, #19412e 58%, #0b1919 100%);
}

.login-brand {
  position: absolute;
  top: 70px;
  display: grid;
  justify-items: center;
  gap: 8px;
  color: #fff;
}

.login-brand .brand-mark {
  width: 58px;
  height: 58px;
  font-size: 26px;
}

.login-brand strong {
  font-size: 28px;
}

.login-brand span {
  color: rgba(255, 255, 255, 0.74);
}

.login-panel {
  width: min(420px, 100%);
  display: grid;
  gap: 16px;
  margin-top: 90px;
  padding: 34px;
  border-radius: 8px;
  background: rgba(12, 23, 24, 0.72);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.32);
}

.login-panel h1 {
  color: #fff;
  text-align: center;
  margin-bottom: 4px;
}

.login-panel input {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 4px;
  padding: 14px 13px;
  color: var(--ink);
  background: #eef4ff;
}

.login-panel button {
  min-height: 48px;
  font-size: 16px;
}

.login-panel p {
  color: rgba(255, 255, 255, 0.68);
  text-align: center;
  font-size: 13px;
}

.shell {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 248px 1fr;
}

.sidebar {
  background: #111819;
  color: #fff;
  padding: 24px 18px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 34px;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  background: var(--green);
  border-radius: 8px;
  font-weight: 800;
}

.brand strong,
.brand span {
  display: block;
}

.brand span {
  color: #a8b4b8;
  font-size: 13px;
  margin-top: 3px;
}

.current-user {
  margin-top: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 28px;
}

.current-user span {
  color: #dce8e6;
  font-size: 13px;
  font-weight: 700;
}

.current-user button {
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  padding: 4px 8px;
  font-size: 12px;
}

nav {
  display: grid;
  gap: 8px;
}

.nav-item {
  border: 0;
  width: 100%;
  border-radius: 8px;
  color: #c5d0d3;
  background: transparent;
  padding: 12px 14px;
  text-align: left;
  cursor: pointer;
}

.nav-item.active,
.nav-item:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.main {
  padding: 26px;
  overflow-x: hidden;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
}

h1,
h2,
p {
  margin: 0;
}

h1 {
  font-size: 25px;
  letter-spacing: 0;
}

h2 {
  font-size: 17px;
}

.topbar p {
  margin-top: 7px;
  color: var(--muted);
  max-width: 920px;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  line-height: 1.45;
}

.actions {
  display: flex;
  gap: 10px;
}

button {
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 10px 14px;
  cursor: pointer;
  white-space: nowrap;
}

.primary {
  background: var(--green);
  color: #fff;
}

.ghost {
  background: #fff;
  color: var(--ink);
  border-color: var(--line);
}

.tab-panel {
  display: none;
}

.tab-panel.active {
  display: block;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 16px;
}

.metrics.compact {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: -2px;
}

.metrics.compact article {
  padding: 14px 18px;
}

.metrics.compact strong {
  font-size: 22px;
}

.metrics article,
.panel {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.metrics article {
  padding: 18px;
}

.metrics span {
  color: var(--muted);
  font-size: 13px;
}

.metrics strong {
  display: block;
  margin-top: 10px;
  font-size: 25px;
}

.grid {
  display: grid;
  gap: 16px;
}

.grid.two {
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
}

.form-grid {
  grid-template-columns: 420px minmax(0, 1fr);
}

.customer-layout {
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.9fr);
}

.customer-list-panel {
  grid-column: 1 / -1;
}

.import-panel {
  grid-column: 1 / 2;
}

.customer-create-panel {
  grid-column: 2 / 3;
}

.import-panel.has-preview {
  grid-column: 1 / -1;
}

.customer-list-panel table {
  min-width: 1320px;
}

.import-preview-wrap table {
  min-width: 1480px;
}

.admin-layout {
  grid-template-columns: minmax(420px, 0.72fr) minmax(0, 1fr);
  align-items: start;
}

.admin-list-panel {
  grid-column: 1 / -1;
}

.admin-form-panel {
  grid-column: 1 / 2;
}

.panel {
  min-width: 0;
  padding: 18px;
}

.panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.panel-head h2 {
  white-space: nowrap;
}

.panel-actions {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.panel-head span {
  color: var(--muted);
  font-size: 13px;
}

.panel-subtitle {
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
}

.trend-panel {
  margin-bottom: 16px;
}

.trend-chart {
  min-height: 250px;
  overflow-x: auto;
}

.trend-chart svg {
  display: block;
  width: 100%;
  min-width: 720px;
  height: 250px;
}

.trend-grid {
  stroke: #e9eef0;
  stroke-width: 1;
  stroke-dasharray: 5 7;
}

.trend-line {
  fill: none;
  stroke: #c6a452;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.trend-bar {
  fill: rgba(198, 164, 82, 0.14);
}

.trend-dot {
  fill: #c6a452;
  stroke: #fff;
  stroke-width: 3;
}

.trend-y-label,
.trend-x-label,
.trend-count-label {
  fill: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.trend-count-label {
  font-size: 11px;
  font-weight: 600;
}

.feed {
  display: grid;
  gap: 10px;
}

.feed-card {
  border: 1px solid var(--line);
  border-left: 4px solid var(--green);
  border-radius: 8px;
  padding: 13px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
}

.tx-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.feed-card strong {
  color: var(--green);
  font-size: 18px;
}

.meta {
  color: var(--muted);
  font-size: 13px;
  margin-top: 5px;
}

.note-line {
  margin-top: 8px;
  padding: 8px 10px;
  border-radius: 8px;
  background: #f6f8fa;
  color: var(--ink);
  font-size: 13px;
  line-height: 1.5;
  word-break: break-word;
}

.badge {
  display: inline-flex;
  align-items: center;
  height: 26px;
  padding: 0 9px;
  border-radius: 999px;
  background: var(--green-soft);
  color: var(--green);
  font-size: 12px;
  white-space: nowrap;
}

.badge.pending {
  color: var(--amber);
  background: #fff4dc;
}

.badge.done {
  color: var(--blue);
  background: #eaf0ff;
}

.alert-preview {
  background: #101718;
  color: #e9f2ef;
  border-radius: 8px;
  padding: 16px;
  white-space: pre-wrap;
  min-height: 270px;
  line-height: 1.7;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 13px;
}

.customer-stats {
  display: grid;
  gap: 0;
}

.customer-stat-line {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  min-height: 54px;
  border-top: 1px solid var(--line);
}

.customer-stat-line:first-child {
  border-top: 0;
}

.customer-stat-line span {
  color: var(--muted);
  font-size: 16px;
  font-weight: 700;
  overflow-wrap: anywhere;
}

.customer-stat-line strong {
  color: var(--ink);
  font-size: 16px;
  white-space: nowrap;
}

.period-tabs {
  display: inline-flex;
  gap: 8px;
  flex-wrap: wrap;
}

.period-tabs .small-btn.active {
  border-color: var(--green);
  background: var(--green);
  color: #fff;
}

.repayment-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 18px;
}

.repayment-summary article {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px;
  background: #f8fafb;
}

.repayment-summary span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  margin-bottom: 8px;
}

.repayment-summary strong {
  color: var(--ink);
  font-size: 22px;
}

.form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.import-form {
  display: grid;
  gap: 12px;
}

.upload-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px 11px;
  color: var(--muted);
  background: #fff;
}

.upload-line input {
  max-width: 260px;
}

.import-form textarea {
  min-height: 178px;
  width: 100%;
  resize: vertical;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 11px;
  color: var(--ink);
  background: #fff;
  line-height: 1.5;
}

.import-summary {
  margin-top: 12px;
  padding: 10px 12px;
  border-radius: 8px;
  background: #eef7ff;
  color: #24507a;
  font-size: 13px;
  font-weight: 700;
}

.import-preview-wrap {
  margin-top: 12px;
  max-height: 360px;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.import-preview-wrap table {
  min-width: 1480px;
}

.import-preview-wrap th,
.import-preview-wrap td {
  white-space: nowrap;
}

tr.new-import-row {
  background: #fff7d7;
}

tr.duplicate-import-row {
  background: #f2f4f5;
  color: #8a969b;
}

.form label {
  color: var(--muted);
  display: grid;
  gap: 7px;
  font-size: 13px;
}

.form input,
.form select,
.search {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px 11px;
  color: var(--ink);
  background: #fff;
}

.password-field {
  position: relative;
  display: block;
}

.password-field input {
  padding-right: 48px;
}

.password-toggle {
  position: absolute;
  right: 8px;
  top: 50%;
  width: 34px;
  height: 34px;
  transform: translateY(-50%);
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 16px;
  line-height: 1;
}

.password-toggle:hover {
  background: #f1f5f7;
  color: var(--ink);
}

.password-toggle.is-visible {
  background: #e8f4f1;
  color: var(--green);
}

.password-rule {
  margin: -4px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.form textarea {
  width: 100%;
  min-height: 86px;
  resize: vertical;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px 11px;
  color: var(--ink);
  background: #fff;
}

.attr-field {
  color: var(--muted);
  display: grid;
  gap: 7px;
  font-size: 13px;
}

.tag-editor {
  display: grid;
  gap: 10px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfcfc;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  min-height: 34px;
  align-items: center;
}

.attr-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 10px;
  border-radius: 999px;
  color: #08745f;
  background: #e9f8f3;
  font-weight: 700;
}

.attr-tag button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border: 0;
  border-radius: 999px;
  color: #08745f;
  background: rgba(8, 116, 95, 0.12);
  cursor: pointer;
}

.tag-empty {
  color: var(--muted);
}

.tag-input-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
}

.check-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.check-item {
  display: flex !important;
  grid-template-columns: none;
  align-items: center;
  gap: 8px !important;
  padding: 9px 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink) !important;
  background: #fff;
}

.check-item input {
  width: 16px;
  height: 16px;
}

.wide {
  grid-column: 1 / -1;
}

.toggle-row {
  display: flex !important;
  align-items: center;
  grid-template-columns: none;
  gap: 9px !important;
  min-height: 40px;
}

.toggle-row input {
  width: 18px;
  height: 18px;
}

.table-wrap {
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 760px;
}

.tx-table {
  min-width: 1420px;
  table-layout: fixed;
}

.tx-time-col,
.tx-time-cell {
  width: 118px;
}

.tx-customer-col,
.tx-customer-cell {
  width: 150px;
}

.tx-amount-col,
.tx-amount-cell {
  width: 115px;
}

.tx-currency-col,
.tx-currency-cell {
  width: 120px;
}

.tx-note-col,
.tx-note-cell {
  width: 220px;
}

.tx-address-col,
.tx-address-cell {
  width: 170px;
}

.tx-type-col,
.tx-type-cell {
  width: 90px;
}

.tx-status-col,
.tx-status-cell {
  width: 110px;
}

.tx-action-col,
.tx-action-cell {
  width: 90px;
}

.tx-note-cell {
  color: var(--ink);
  line-height: 1.45;
  white-space: normal;
  word-break: break-word;
}

th,
td {
  border-bottom: 1px solid var(--line);
  padding: 12px 10px;
  text-align: left;
  vertical-align: middle;
  font-size: 14px;
}

th {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

td.mono {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 12px;
}

tr.muted-row {
  background: #f0f3f4;
  color: #8a969b;
}

tr.muted-row td {
  opacity: 0.58;
}

tr.muted-row .row-actions,
tr.muted-row .badge {
  opacity: 1;
}

.amount {
  color: var(--green);
  font-weight: 800;
}

.search {
  max-width: 360px;
}

.table-tools {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
}

.receivable-head {
  align-items: center;
  margin-bottom: 12px;
}

.table-primary-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.receivable-tools {
  display: grid;
  grid-template-columns: minmax(260px, 1.3fr) minmax(130px, 0.45fr) minmax(190px, 0.65fr) minmax(190px, 0.65fr) auto;
  justify-content: stretch;
  margin-bottom: 22px;
}

.receivable-tools .search {
  max-width: none;
  width: 100%;
}

.table-tools input {
  min-width: 180px;
}

.date-filter,
.select-filter {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 10px;
  color: var(--muted);
  background: #fff;
  font-size: 13px;
  white-space: nowrap;
}

.date-filter input,
.select-filter select {
  min-width: 146px;
  border: 0;
  padding: 0;
  color: var(--ink);
  background: transparent;
}

.select-filter select {
  min-width: 76px;
  font: inherit;
  outline: none;
}

.table-head {
  align-items: start;
}

.table-head h2 {
  min-width: 132px;
}

.row-actions {
  display: flex;
  gap: 8px;
}

.button-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.small-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  line-height: 1.2;
  text-decoration: none;
}

.small-btn.danger {
  color: var(--red);
  border-color: #f0c4c0;
  background: #fff7f6;
}

.small-btn.review {
  color: var(--amber);
  border-color: #f1d49b;
  background: #fff9ed;
}

.small-btn.notify {
  color: #fff;
  border-color: var(--green);
  background: var(--green);
}

.small-btn.confirm {
  color: #fff;
  border-color: var(--blue);
  background: var(--blue);
}

.small-btn:disabled,
.small-btn.disabled {
  color: #96a1a6;
  border-color: var(--line);
  background: #eef2f3;
  cursor: not-allowed;
  pointer-events: none;
}

.text-link {
  color: var(--blue);
  font-size: 13px;
  text-decoration: none;
  white-space: nowrap;
}

.text-link:hover {
  text-decoration: underline;
}

.settings-panel {
  max-width: 860px;
}

.pager {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  flex-wrap: wrap;
  padding: 14px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.pager button,
.pager select {
  min-height: 34px;
}

.pager button:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.pager label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.pager select {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 6px 28px 6px 9px;
  color: var(--ink);
  background: #fff;
}

.settings-form {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.report-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.report-card,
.report-wide {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 16px;
}

.report-card span,
.report-line span {
  color: var(--muted);
}

.report-card strong {
  display: block;
  margin-top: 10px;
  font-size: 20px;
}

.report-wide {
  grid-column: 1 / -1;
}

.report-wide h2 {
  margin-bottom: 10px;
}

.report-line {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
  border-top: 1px solid var(--line);
}

.toast {
  position: fixed;
  right: 22px;
  bottom: 22px;
  background: #101718;
  color: #fff;
  padding: 12px 14px;
  border-radius: 8px;
  opacity: 0;
  transform: translateY(12px);
  transition: 0.2s ease;
  max-width: 360px;
  pointer-events: none;
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 20;
  display: grid;
  place-items: center;
  background: rgba(9, 17, 19, 0.5);
  padding: 18px;
}

.modal-backdrop[hidden] {
  display: none;
}

.modal {
  width: min(640px, 100%);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 50px rgba(15, 26, 31, 0.22);
  padding: 22px;
}

.modal.wide-modal {
  width: min(920px, 100%);
}

.modal-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 10px;
}

.modal h2 {
  margin: 0;
}

.modal-close {
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--muted);
  cursor: pointer;
  font-size: 22px;
  line-height: 1;
}

.modal-close:hover {
  color: var(--ink);
  background: #f8fafb;
}

.modal p {
  color: var(--muted);
  line-height: 1.6;
}

.modal-tip {
  margin: 0 0 14px;
  font-size: 13px;
}

.modal-textarea {
  width: 100%;
  min-height: 180px;
  margin-top: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px;
  color: var(--ink);
  background: #f8fafb;
  resize: vertical;
  line-height: 1.6;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 13px;
}

.modal-textarea:focus {
  outline: 2px solid rgba(11, 143, 112, 0.18);
  border-color: var(--green);
}

.modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 22px;
}

.empty {
  color: var(--muted);
  border: 1px dashed var(--line);
  border-radius: 8px;
  padding: 18px;
  text-align: center;
}

@media (max-width: 980px) {
  .shell {
    grid-template-columns: 1fr;
  }

  .sidebar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 14px;
  }

  nav {
    display: flex;
    overflow-x: auto;
  }

  .nav-item {
    width: auto;
  }

  .topbar,
  .panel-head {
    align-items: stretch;
    flex-direction: column;
  }

  .actions,
  .metrics,
  .metrics.compact,
  .repayment-summary,
  .report-grid,
  .grid.two,
  .customer-layout,
  .admin-layout,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .admin-form-panel {
    grid-column: 1 / -1;
  }

  .import-panel,
  .customer-create-panel,
  .import-panel.has-preview {
    grid-column: 1 / -1;
  }

  .metrics {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .metrics.compact,
  .report-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .receivable-tools {
    grid-template-columns: 1fr 1fr;
  }

  .receivable-tools .search {
    grid-column: 1 / -1;
  }

  .actions {
    display: grid;
  }
}

@media (max-width: 560px) {
  .main {
    padding: 14px;
  }

  .brand span {
    display: none;
  }

  .metrics,
  .metrics.compact,
  .repayment-summary,
  .form,
  .check-grid,
  .report-grid,
  .settings-form {
    grid-template-columns: 1fr;
  }

  .receivable-tools {
    grid-template-columns: 1fr;
  }
}
