:root {
  --bg: #eef2f0;
  --bg-2: #f8f5ed;
  --surface: #ffffff;
  --surface-soft: #f7faf8;
  --ink: #152023;
  --muted: #627178;
  --line: #d8e2df;
  --line-strong: #c5d4d1;
  --brand: #087a73;
  --brand-dark: #055f5a;
  --accent: #c66c28;
  --accent-soft: #fff2df;
  --good: #168a52;
  --warn: #9b6715;
  --danger: #c44434;
  --shadow: 0 18px 42px rgba(21, 32, 35, 0.09);
  --shadow-hover: 0 24px 56px rgba(21, 32, 35, 0.14);
  --radius: 8px;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    "PingFang SC", "Microsoft YaHei", sans-serif;
}

* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  max-width: 100%;
}

body {
  margin: 0;
  background:
    linear-gradient(90deg, rgba(8, 122, 115, 0.06) 1px, transparent 1px),
    linear-gradient(180deg, rgba(8, 122, 115, 0.05) 1px, transparent 1px),
    linear-gradient(135deg, var(--bg), var(--bg-2));
  background-size: 32px 32px, 32px 32px, auto;
  color: var(--ink);
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

.app-shell {
  min-height: 100vh;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  width: 100%;
  border-bottom: 1px solid rgba(216, 226, 223, 0.86);
  background: rgba(248, 250, 248, 0.86);
  padding: 12px clamp(16px, 4vw, 48px);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: var(--radius);
  background: #087a73;
  box-shadow: 0 10px 24px rgba(8, 122, 115, 0.24);
  color: #fff;
  font-weight: 900;
}

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

.brand strong {
  font-size: 15px;
  line-height: 1.2;
}

.brand small {
  color: var(--muted);
  font-size: 12px;
  margin-top: 2px;
}

main {
  width: min(1500px, 100%);
  margin: 0 auto;
  padding: 32px clamp(16px, 4vw, 48px) 60px;
}

.page-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 24px;
  margin-bottom: 22px;
  width: 100%;
  padding: 24px;
  border: 1px solid rgba(197, 212, 209, 0.9);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(247, 250, 248, 0.84)),
    radial-gradient(circle at 100% 0%, rgba(198, 108, 40, 0.12), transparent 34%);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.page-head > *,
.card-head > *,
.metric-box,
.plan-card,
.card-actions {
  min-width: 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  margin-bottom: 10px;
  border: 1px solid rgba(8, 122, 115, 0.18);
  border-radius: 999px;
  background: #e9f4f2;
  color: var(--brand);
  font-size: 12px;
  font-weight: 900;
  padding: 3px 10px;
}

.page-head h1 {
  font-size: clamp(38px, 5vw, 62px);
  line-height: 0.95;
  margin: 0 0 12px;
  letter-spacing: 0;
}

.page-head p {
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
  max-width: 760px;
  word-break: break-word;
  overflow-wrap: anywhere;
}

.mobile-break {
  display: none;
}

.head-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(72px, 1fr));
  gap: 10px;
  min-width: 220px;
}

.head-panel .freshness {
  grid-column: 1 / -1;
  justify-content: center;
}

.head-stat {
  min-height: 70px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
  padding: 10px 12px;
}

.head-stat strong,
.head-stat small {
  display: block;
}

.head-stat strong {
  font-size: 26px;
  line-height: 1;
}

.head-stat small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  margin-top: 8px;
}

.freshness,
.status,
.tag {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  min-height: 24px;
  padding: 3px 9px;
  white-space: nowrap;
}

.freshness {
  background: #e9f4f2;
  color: var(--brand);
}

.library-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 18px;
  border: 1px solid rgba(197, 212, 209, 0.84);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 10px 26px rgba(21, 32, 35, 0.06);
  padding: 10px;
}

.search-control {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 260px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
}

.search-control input {
  min-height: 34px;
  width: 100%;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  padding: 0 11px;
}

.search-control input:focus,
.sort-control select:focus {
  border-color: rgba(8, 122, 115, 0.42);
  outline: 3px solid rgba(8, 122, 115, 0.16);
}

.filter-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  min-width: 0;
}

.filter-btn,
.toggle-plans {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--muted);
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  font-weight: 900;
}

.filter-btn {
  min-height: 34px;
  min-width: 0;
  padding: 7px 12px;
}

.filter-btn.active {
  border-color: rgba(8, 122, 115, 0.26);
  background: #e9f4f2;
  color: var(--brand);
}

.sort-control {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
}

.sort-control select {
  min-height: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  padding: 0 34px 0 10px;
}

.provider-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.provider-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  min-height: 100%;
  border: 1px solid rgba(197, 212, 209, 0.88);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease,
    transform 160ms ease;
}

.provider-card:target {
  border-color: rgba(8, 122, 115, 0.5);
  box-shadow: 0 0 0 4px rgba(8, 122, 115, 0.12), var(--shadow-hover);
}

.provider-card::before {
  content: "";
  display: block;
  height: 4px;
  background: linear-gradient(90deg, var(--brand), var(--accent));
}

.provider-card:hover {
  border-color: var(--line-strong);
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px);
}

.card-main {
  display: grid;
  gap: 16px;
  padding: 18px;
}

.card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}

.provider-title {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.provider-mark {
  display: grid;
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(8, 122, 115, 0.18);
  border-radius: var(--radius);
  background: #e9f4f2;
  color: var(--brand);
  font-size: 18px;
  font-weight: 900;
}

.provider-name {
  display: flex;
  align-items: center;
  gap: 7px;
  margin: 0 0 8px;
  font-size: 22px;
  line-height: 1.16;
  overflow-wrap: anywhere;
}

.anchor-btn {
  flex: 0 0 auto;
  min-width: 26px;
  min-height: 24px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--muted);
  cursor: pointer;
  font: inherit;
  font-size: 12px;
  font-weight: 900;
  padding: 2px 7px;
}

.anchor-btn:hover {
  border-color: rgba(8, 122, 115, 0.32);
  color: var(--brand);
}

.status-stack {
  display: grid;
  justify-items: end;
  gap: 8px;
  flex: 0 0 auto;
}

.meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.status.official,
.status.available {
  background: #e8f6ef;
  color: var(--good);
}

.status.reference {
  background: #f1eefb;
  color: #6850a8;
}

.status.pending {
  background: #fff6df;
  color: var(--warn);
}

.status.none,
.status.unknown {
  background: #eef2f3;
  color: #52636a;
}

.tag {
  background: #eef2f3;
  color: #52636a;
}

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

.metric-box {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-soft);
  padding: 13px;
}

.metric-box small {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  margin-bottom: 6px;
}

.metric-box strong {
  display: block;
  font-size: 15px;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.price-line {
  color: var(--brand);
  font-size: 18px;
  font-weight: 900;
}

.plan-section {
  display: grid;
  gap: 10px;
}

.section-title {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  margin: 0;
}

.plan-list {
  display: grid;
  gap: 10px;
}

.plan-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fbfcfc;
  padding: 12px;
}

.plan-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 9px;
}

.plan-card h3 {
  font-size: 15px;
  line-height: 1.35;
  margin: 0;
}

.plan-card-head span {
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  flex: 0 0 auto;
  max-width: 50%;
  font-size: 11px;
  font-weight: 900;
  padding: 2px 7px;
  text-align: center;
  white-space: normal;
  overflow-wrap: anywhere;
}

.plan-fields {
  display: grid;
  gap: 7px;
  margin: 0;
}

.plan-fields div {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.48;
}

.plan-fields dt {
  font-weight: 800;
}

.plan-fields dd {
  margin: 0;
  color: var(--ink);
  overflow-wrap: anywhere;
}

.source-link {
  display: inline-flex;
  width: fit-content;
  margin-top: 10px;
  color: var(--brand);
  font-size: 12px;
  font-weight: 900;
}

.source-link:hover {
  color: var(--brand-dark);
  text-decoration: underline;
}

.empty-plan {
  border: 1px dashed var(--line-strong);
  border-radius: var(--radius);
  background: rgba(238, 242, 243, 0.55);
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
  margin: 0;
  padding: 12px;
}

.toggle-plans {
  min-height: 34px;
  width: 100%;
  background: #f7faf8;
  color: var(--brand);
  padding: 8px 10px;
}

.toggle-plans:hover,
.filter-btn:hover {
  border-color: rgba(8, 122, 115, 0.34);
  color: var(--brand);
}

.small-btn {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--brand);
  cursor: pointer;
  font: inherit;
  font-size: 12px;
  font-weight: 800;
  padding: 2px 9px;
}

.small-btn:hover {
  border-color: var(--brand);
  background: #e9f4f2;
}

.plan-card-head .meta-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.empty-library {
  grid-column: 1 / -1;
  border: 1px dashed var(--line-strong);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.86);
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.7;
  padding: 24px;
  text-align: center;
}

.card-actions {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: 10px;
  margin-top: auto;
  border-top: 1px solid var(--line);
  padding: 14px 18px 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.22), rgba(247, 250, 248, 0.86));
}

.buy-btn,
.source-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  width: 100%;
  border-radius: var(--radius);
  background: var(--brand);
  color: #fff;
  font-size: 14px;
  font-weight: 900;
  padding: 10px 14px;
  transition:
    background 160ms ease,
    border-color 160ms ease,
    color 160ms ease,
    transform 160ms ease;
}

.source-btn {
  border: 1px solid rgba(8, 122, 115, 0.24);
  background: #fff;
  color: var(--brand);
}

.source-btn:hover {
  border-color: rgba(8, 122, 115, 0.42);
  background: #e9f4f2;
  transform: translateY(-1px);
}

.buy-btn {
  border: 1px solid var(--brand);
}

.buy-btn:hover {
  background: var(--brand-dark);
  transform: translateY(-1px);
}

.buy-btn:focus-visible,
.source-btn:focus-visible,
.source-link:focus-visible {
  outline: 3px solid rgba(8, 122, 115, 0.28);
  outline-offset: 3px;
}

.sync-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
  margin-top: 18px;
  border: 1px solid rgba(197, 212, 209, 0.84);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  padding: 16px 18px;
}

.sync-panel h2 {
  font-size: 16px;
  line-height: 1.3;
  margin: 0 0 5px;
}

.sync-panel p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
  margin: 0;
}

.sync-panel .sync-warning {
  color: var(--warn);
  font-weight: 800;
}

.sync-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(88px, 1fr));
  gap: 8px;
}

.sync-stats span {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-soft);
  padding: 10px 12px;
}

.sync-stats strong,
.sync-stats small {
  display: block;
}

.sync-stats strong {
  font-size: 15px;
  line-height: 1.2;
}

.sync-stats small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  margin-top: 5px;
}

.change-panel,
.source-directory,
.disclaimer {
  margin-top: 18px;
  border: 1px solid rgba(197, 212, 209, 0.84);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  padding: 16px 18px;
}

.change-head,
.source-directory-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}

.change-panel h2,
.source-directory h2,
.disclaimer strong {
  display: block;
  font-size: 16px;
  line-height: 1.3;
  margin: 0 0 5px;
}

.change-panel p,
.source-directory p,
.disclaimer p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
  margin: 0;
}

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

.change-card {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-soft);
  padding: 12px;
}

.change-card.wide {
  grid-column: span 2;
}

.change-card small,
.change-card strong {
  display: block;
}

.change-card small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  margin-bottom: 6px;
}

.change-card strong {
  font-size: 14px;
  line-height: 1.55;
  overflow-wrap: anywhere;
}

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

.source-item {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-soft);
  padding: 12px;
}

.source-item h3 {
  font-size: 14px;
  line-height: 1.3;
  margin: 0 0 5px;
}

.source-links {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 10px;
}

.source-links a {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  border: 1px solid rgba(8, 122, 115, 0.18);
  border-radius: 999px;
  background: #fff;
  color: var(--brand);
  font-size: 12px;
  font-weight: 900;
  padding: 3px 9px;
}

.source-links a:hover {
  border-color: rgba(8, 122, 115, 0.36);
  background: #e9f4f2;
}

.toast {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 20;
  max-width: min(320px, calc(100vw - 32px));
  border: 1px solid rgba(8, 122, 115, 0.24);
  border-radius: var(--radius);
  background: rgba(21, 32, 35, 0.92);
  box-shadow: var(--shadow-hover);
  color: #fff;
  font-size: 14px;
  font-weight: 900;
  opacity: 0;
  padding: 12px 14px;
  pointer-events: none;
  transform: translateY(10px);
  transition:
    opacity 160ms ease,
    transform 160ms ease;
}

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

.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(21, 32, 35, 0.55);
  opacity: 0;
  pointer-events: none;
  transition: opacity 200ms ease;
  padding: 20px;
}

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

.modal-overlay.show {
  opacity: 1;
  pointer-events: auto;
}

.modal-panel {
  position: relative;
  width: min(680px, 100%);
  max-height: calc(100vh - 40px);
  overflow-y: auto;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-hover);
  padding: 28px;
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--muted);
  cursor: pointer;
  font: inherit;
  font-size: 20px;
  font-weight: 800;
  line-height: 1;
}

.modal-close:hover {
  border-color: var(--brand);
  color: var(--brand);
}

.modal-content-head {
  margin-bottom: 18px;
  padding-right: 40px;
}

.modal-content-head h2 {
  font-size: 22px;
  line-height: 1.25;
  margin: 0 0 8px;
}

.modal-content-head .meta-row {
  margin-bottom: 10px;
}

.modal-fields {
  display: grid;
  gap: 10px;
  margin: 0 0 18px;
}

.modal-fields div {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  gap: 10px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.modal-fields dt {
  font-weight: 800;
}

.modal-fields dd {
  margin: 0;
  color: var(--ink);
}

.modal-section {
  margin-bottom: 16px;
}

.modal-section h3 {
  font-size: 14px;
  color: var(--muted);
  margin: 0 0 8px;
}

.modal-section ul {
  margin: 0;
  padding-left: 18px;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.7;
}

.modal-section li {
  margin-bottom: 4px;
}

.modal-actions {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

@media (max-width: 1180px) {
  .provider-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .source-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

@media (max-width: 780px) {
  main {
    padding: 22px 12px 40px;
  }

  .topbar {
    padding-inline: 12px;
  }

  .page-head {
    grid-template-columns: 1fr;
    padding: 18px;
  }

  .library-toolbar,
  .sync-panel {
    grid-template-columns: 1fr;
  }

  .library-toolbar {
    align-items: stretch;
    flex-direction: column;
  }

  .sort-control {
    justify-content: space-between;
    width: 100%;
  }

  .search-control {
    width: 100%;
    min-width: 0;
  }

  .sort-control select {
    flex: 1;
  }

  .head-panel {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    min-width: 0;
  }

  .head-panel .freshness {
    grid-column: auto;
  }

  .provider-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .card-head {
    flex-direction: column;
  }

  .status-stack {
    justify-items: start;
  }

  .sync-stats {
    grid-template-columns: 1fr;
  }

  .change-head,
  .source-directory-head {
    flex-direction: column;
  }

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

  .change-grid,
  .change-card.wide {
    grid-template-columns: 1fr;
    grid-column: auto;
  }
}

@media (max-width: 520px) {
  main {
    padding-top: 14px;
  }

  .page-head {
    gap: 16px;
    margin-bottom: 14px;
    padding: 16px;
  }

  .eyebrow {
    margin-bottom: 8px;
  }

  .page-head h1 {
    font-size: 36px;
    margin-bottom: 10px;
  }

  .page-head p {
    max-width: calc(100vw - 88px);
    word-break: break-all;
  }

  .mobile-break {
    display: block;
  }

  .head-panel {
    grid-template-columns: 1fr 1fr;
  }

  .head-stat {
    min-height: 58px;
  }

  .head-stat strong {
    font-size: 22px;
  }

  .filter-group {
    display: flex;
    flex-wrap: nowrap;
    width: 100%;
    overflow-x: auto;
    padding-bottom: 2px;
    scrollbar-width: none;
  }

  .filter-group::-webkit-scrollbar {
    display: none;
  }

  .filter-btn {
    flex: 0 0 auto;
    min-width: 112px;
    width: auto;
  }

  .card-actions {
    grid-template-columns: 1fr;
  }

  .head-panel .freshness {
    grid-column: 1 / -1;
  }

  .provider-title {
    align-items: center;
  }

  .plan-card-head {
    flex-direction: column;
  }

  .plan-card-head span {
    max-width: 100%;
  }

  .provider-mark {
    width: 40px;
    height: 40px;
  }

  .summary-grid,
  .plan-fields div {
    grid-template-columns: 1fr;
  }

  .source-grid {
    grid-template-columns: 1fr;
  }

  .toast {
    right: 12px;
    bottom: 12px;
  }

  .plan-fields div {
    gap: 2px;
  }
}
