:root {
  --bg: #eef2f0;
  --bg-deep: #d8e4de;
  --surface: #ffffff;
  --ink: #15241f;
  --muted: #5c6f68;
  --line: #d5e0db;
  --teal: #0f766e;
  --teal-dark: #0a5c56;
  --teal-soft: #d5f0eb;
  --coral: #c45c3a;
  --amber: #b7791f;
  --ok: #1a7a4c;
  --warn: #a16207;
  --bad: #b42318;
  --sidebar: #0f2924;
  --sidebar-text: #c8ddd6;
  --shadow: 0 18px 40px rgba(15, 41, 36, 0.08);
  --radius: 16px;
  --font: "Outfit", sans-serif;
  --serif: "Source Serif 4", Georgia, serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
}

button,
input,
select {
  font: inherit;
}

[hidden] {
  display: none !important;
}

/* —— Login —— */
.login-screen {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
  position: relative;
  overflow: hidden;
}

.login-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 80% 60% at 10% 20%, rgba(15, 118, 110, 0.28), transparent 55%),
    radial-gradient(ellipse 70% 50% at 90% 80%, rgba(196, 92, 58, 0.18), transparent 50%),
    linear-gradient(145deg, #0f2924 0%, #1a4a42 45%, #245c52 100%);
}

.login-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.9;
}

.login-card {
  position: relative;
  z-index: 2;
  width: min(420px, 100%);
  background: var(--surface);
  border-radius: 22px;
  padding: 36px 32px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
  animation: rise 0.55s ease both;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.login-brand {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 28px;
}

.login-brand h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.login-brand p {
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.brand-mark {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, var(--teal), #134e4a);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.04em;
  flex-shrink: 0;
}

.brand-mark.sm {
  width: 40px;
  height: 40px;
  border-radius: 11px;
  font-size: 0.85rem;
}

#login-form {
  display: grid;
  gap: 14px;
}

#login-form label {
  display: grid;
  gap: 6px;
}

#login-form label span {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--muted);
}

#login-form input {
  border: 1.5px solid var(--line);
  border-radius: 12px;
  padding: 12px 14px;
  background: #f7faf8;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

#login-form input:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(15, 118, 110, 0.15);
  background: #fff;
}

.login-error {
  margin: 0;
  color: var(--bad);
  font-size: 0.88rem;
}

.btn-primary {
  margin-top: 6px;
  border: 0;
  border-radius: 12px;
  padding: 13px 16px;
  background: linear-gradient(145deg, var(--teal), var(--teal-dark));
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.15s, filter 0.15s;
}

.btn-primary:hover {
  filter: brightness(1.06);
  transform: translateY(-1px);
}

.btn-secondary {
  border: 1.5px solid var(--line);
  background: var(--surface);
  border-radius: 12px;
  padding: 10px 16px;
  font-weight: 600;
  cursor: pointer;
  color: var(--ink);
}

.btn-secondary:hover {
  border-color: var(--teal);
  color: var(--teal);
}

.btn-ghost {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: transparent;
  color: var(--sidebar-text);
  border-radius: 10px;
  padding: 8px 12px;
  cursor: pointer;
  width: 100%;
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}

/* —— App shell —— */
.app {
  display: grid;
  grid-template-columns: 260px 1fr;
  min-height: 100vh;
}

.sidebar {
  background: var(--sidebar);
  color: var(--sidebar-text);
  display: flex;
  flex-direction: column;
  padding: 20px 14px;
  position: sticky;
  top: 0;
  height: 100vh;
}

.sidebar-brand {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 8px 10px 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 16px;
}

.sidebar-brand strong {
  display: block;
  color: #fff;
  font-size: 0.98rem;
}

.sidebar-brand small {
  color: rgba(200, 221, 214, 0.7);
  font-size: 0.75rem;
}

.sidebar-nav {
  display: grid;
  gap: 4px;
  flex: 1;
  align-content: start;
}

.nav-item {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  border: 0;
  background: transparent;
  color: var(--sidebar-text);
  text-align: left;
  padding: 11px 12px;
  border-radius: 12px;
  cursor: pointer;
  font-weight: 500;
  font-size: 0.92rem;
  transition: background 0.18s, color 0.18s;
}

.nav-item svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  opacity: 0.85;
}

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

.nav-item.active {
  background: linear-gradient(135deg, rgba(15, 118, 110, 0.45), rgba(15, 118, 110, 0.2));
  color: #fff;
  box-shadow: inset 0 0 0 1px rgba(213, 240, 235, 0.15);
}

.sidebar-foot {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 14px;
  display: grid;
  gap: 10px;
}

.user-chip {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 4px 6px;
}

.avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--teal-soft);
  color: var(--teal-dark);
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 0.85rem;
}

.user-chip strong {
  display: block;
  color: #fff;
  font-size: 0.88rem;
}

.user-chip small {
  color: rgba(200, 221, 214, 0.65);
  font-size: 0.72rem;
}

.main {
  min-width: 0;
  background:
    radial-gradient(ellipse 50% 30% at 100% 0%, rgba(15, 118, 110, 0.08), transparent 60%),
    radial-gradient(ellipse 40% 25% at 0% 100%, rgba(196, 92, 58, 0.05), transparent 55%),
    var(--bg);
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  padding: 28px 32px 12px;
}

.topbar h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.65rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.topbar p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.period-select {
  display: grid;
  gap: 4px;
  font-size: 0.78rem;
  color: var(--muted);
  font-weight: 500;
}

.period-select select {
  border: 1.5px solid var(--line);
  border-radius: 10px;
  padding: 8px 12px;
  background: var(--surface);
  min-width: 150px;
}

.content {
  padding: 12px 32px 40px;
}

.view {
  display: none;
  animation: fadeIn 0.35s ease both;
}

.view.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

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

.stat-grid.cols-3 {
  grid-template-columns: repeat(3, 1fr);
}

.stat {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px 18px 16px;
  box-shadow: var(--shadow);
}

.stat-label {
  display: block;
  font-size: 0.8rem;
  color: var(--muted);
  font-weight: 500;
  margin-bottom: 8px;
}

.stat-value {
  display: block;
  font-size: 1.55rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.stat-delta {
  display: inline-block;
  margin-top: 8px;
  font-size: 0.78rem;
  color: var(--muted);
  font-weight: 500;
}

.stat-delta.up {
  color: var(--ok);
}

.stat-delta.warn {
  color: var(--warn);
}

.panel-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 14px;
  margin-bottom: 16px;
}

.panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
  margin-bottom: 16px;
}

.panel.wide {
  margin-bottom: 0;
}

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

.panel-head h3 {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
}

.chip {
  font-size: 0.75rem;
  color: var(--teal-dark);
  background: var(--teal-soft);
  padding: 4px 10px;
  border-radius: 999px;
  font-weight: 500;
}

.quick-tools {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 10px;
}

.quick-tools button {
  border: 1.5px solid var(--line);
  background: #f7faf8;
  border-radius: 12px;
  padding: 14px 12px;
  text-align: left;
  cursor: pointer;
  font-weight: 550;
  font-size: 0.9rem;
  transition: border-color 0.15s, background 0.15s, transform 0.15s;
}

.quick-tools button:hover {
  border-color: var(--teal);
  background: var(--teal-soft);
  transform: translateY(-2px);
}

.toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 16px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px 18px;
  box-shadow: var(--shadow);
}

.compare-box {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: flex-end;
}

.compare-box label {
  display: grid;
  gap: 4px;
  font-size: 0.78rem;
  color: var(--muted);
  font-weight: 500;
}

.compare-box select {
  border: 1.5px solid var(--line);
  border-radius: 10px;
  padding: 8px 12px;
  min-width: 200px;
  background: #f7faf8;
}

.vs {
  font-weight: 700;
  color: var(--coral);
  padding-bottom: 8px;
}

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

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}

th,
td {
  text-align: left;
  padding: 11px 10px;
  border-bottom: 1px solid var(--line);
  white-space: nowrap;
}

th {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--muted);
  font-weight: 600;
}

tbody tr:hover {
  background: #f4f9f7;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 9px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
}

.badge.yes {
  background: #dcfce7;
  color: var(--ok);
}

.badge.no {
  background: #fee4e2;
  color: var(--bad);
}

.badge.partial {
  background: #fef3c7;
  color: var(--warn);
}

.score-bar {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 90px;
}

.score-bar i {
  display: block;
  height: 6px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--teal), #34d399);
}

.delta-pos {
  color: var(--ok);
  font-weight: 600;
}

.delta-neg {
  color: var(--bad);
  font-weight: 600;
}

.delta-flat {
  color: var(--muted);
}

.search-input {
  border: 1.5px solid var(--line);
  border-radius: 10px;
  padding: 8px 12px;
  min-width: 200px;
  background: #f7faf8;
}

.filter-pills {
  display: flex;
  gap: 6px;
}

.pill {
  border: 1px solid var(--line);
  background: #f7faf8;
  border-radius: 999px;
  padding: 5px 12px;
  font-size: 0.8rem;
  font-weight: 550;
  cursor: pointer;
}

.pill.active {
  background: var(--teal);
  border-color: var(--teal);
  color: #fff;
}

.share-cell {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 120px;
}

.share-cell .bar {
  flex: 1;
  height: 6px;
  background: #e5eeea;
  border-radius: 99px;
  overflow: hidden;
  max-width: 80px;
}

.share-cell .bar span {
  display: block;
  height: 100%;
  background: var(--teal);
  border-radius: 99px;
}

@media (max-width: 1100px) {
  .stat-grid,
  .stat-grid.cols-3 {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

  .sidebar {
    position: relative;
    height: auto;
    border-radius: 0;
  }

  .sidebar-nav {
    display: flex;
    overflow-x: auto;
    gap: 4px;
    padding-bottom: 4px;
  }

  .nav-item {
    white-space: nowrap;
    flex-shrink: 0;
  }

  .sidebar-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .btn-ghost {
    width: auto;
  }

  .topbar,
  .content {
    padding-left: 16px;
    padding-right: 16px;
  }

  .stat-grid,
  .stat-grid.cols-3 {
    grid-template-columns: 1fr;
  }

  .topbar-actions {
    width: 100%;
  }

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

  .modal-card {
    padding: 22px 18px;
  }
}

/* —— Projects & extras —— */
.nav-divider {
  margin: 12px 10px 6px;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(200, 221, 214, 0.45);
  font-weight: 600;
}

.nav-item:disabled,
.nav-item.is-disabled {
  opacity: 0.38;
  cursor: not-allowed;
}

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

.btn-sm {
  padding: 9px 14px !important;
  font-size: 0.88rem;
  border-radius: 10px;
  white-space: nowrap;
}

.empty-state {
  background: var(--surface);
  border: 1px dashed var(--line);
  border-radius: 22px;
  padding: 56px 28px;
  text-align: center;
  max-width: 520px;
  margin: 24px auto;
  box-shadow: var(--shadow);
  animation: fadeIn 0.4s ease both;
}

.empty-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, var(--teal), #134e4a);
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
}

.empty-state h3 {
  margin: 0 0 8px;
  font-family: var(--serif);
  font-size: 1.4rem;
}

.empty-state p {
  margin: 0 0 22px;
  color: var(--muted);
  line-height: 1.5;
}

.empty-inline {
  color: var(--muted);
  padding: 28px;
  text-align: center;
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--line);
}

.projects-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

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

.project-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 14px;
  transition: transform 0.18s, border-color 0.18s;
  animation: fadeIn 0.35s ease both;
}

.project-card:hover {
  transform: translateY(-2px);
  border-color: #b7d0c8;
}

.project-card.is-active {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(15, 118, 110, 0.12), var(--shadow);
}

.project-card.is-archived {
  opacity: 0.78;
}

.project-card-top {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.project-card-top h3 {
  margin: 0;
  font-size: 1.05rem;
}

.project-card-top a {
  color: var(--teal);
  text-decoration: none;
  font-size: 0.85rem;
}

.project-card-top a:hover {
  text-decoration: underline;
}

.project-favicon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--teal-soft);
  color: var(--teal-dark);
  display: grid;
  place-items: center;
  font-weight: 700;
  flex-shrink: 0;
}

.project-meta {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  font-size: 0.78rem;
  color: var(--muted);
}

.project-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.chip-muted {
  background: #e8eeeb;
  color: var(--muted);
}

.project-banner {
  margin-bottom: 16px;
}

.project-banner:empty {
  display: none;
}

.banner-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  background: linear-gradient(120deg, #e7f5f1, #fff8f4);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px 16px;
}

.banner-inner strong {
  display: block;
  font-size: 0.98rem;
}

.banner-inner a {
  color: var(--teal);
  text-decoration: none;
  font-size: 0.85rem;
}

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

/* Modal */
.modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  padding: 20px;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 41, 36, 0.55);
  backdrop-filter: blur(4px);
}

.modal-card {
  position: relative;
  width: min(480px, 100%);
  background: var(--surface);
  border-radius: 20px;
  padding: 26px 24px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
  animation: rise 0.35s ease both;
}

.modal-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}

.modal-head h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.25rem;
}

.icon-btn {
  border: 0;
  background: #eef2f0;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  font-size: 1.3rem;
  line-height: 1;
  cursor: pointer;
  color: var(--muted);
}

#project-form {
  display: grid;
  gap: 12px;
}

#project-form label {
  display: grid;
  gap: 6px;
}

#project-form label span {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--muted);
}

#project-form label small {
  font-weight: 400;
  opacity: 0.8;
}

#project-form input,
#project-form textarea {
  border: 1.5px solid var(--line);
  border-radius: 12px;
  padding: 11px 13px;
  background: #f7faf8;
  outline: none;
  resize: vertical;
}

#project-form input:focus,
#project-form textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(15, 118, 110, 0.15);
  background: #fff;
}

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

.analysis-status {
  margin: 0 32px 8px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #e7f5f1;
  border: 1px solid #b7d0c8;
  color: var(--teal-dark);
  border-radius: 12px;
  padding: 10px 14px;
  font-size: 0.9rem;
  font-weight: 500;
}

.analysis-status .pulse {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--teal);
  animation: pulse 1.2s ease infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.85); }
}

.banner-meta {
  margin-top: 4px;
  font-size: 0.78rem;
  color: var(--muted);
}

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

.snap-row {
  display: grid;
  gap: 2px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}

.snap-row:last-child { border-bottom: 0; padding-bottom: 0; }

.snap-row span {
  font-size: 0.75rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.snap-row strong {
  font-size: 0.92rem;
  font-weight: 600;
  word-break: break-word;
}

.snap-row a { color: var(--teal); text-decoration: none; }

.muted-mini {
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: 2px;
  white-space: normal;
  max-width: 280px;
}

@media (max-width: 860px) {
  .analysis-status { margin: 0 16px 8px; }
}

.gsc-box { margin-bottom: 16px; }
.gsc-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
}
.gsc-card h3 { margin: 0 0 8px; font-family: var(--serif); }
.gsc-card p { margin: 0 0 12px; color: var(--muted); line-height: 1.45; }
.gsc-card.compact {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  padding: 12px 14px;
  font-size: 0.88rem;
  color: var(--muted);
}
.gsc-actions { display: flex; flex-wrap: wrap; gap: 8px; }
.help-text { font-size: 0.85rem; color: var(--muted); margin: 8px 0 0; line-height: 1.4; }
.help-list { margin: 0 0 14px; padding-left: 18px; color: var(--muted); font-size: 0.9rem; line-height: 1.5; }
.panel-actions { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.page-cell { max-width: 260px; white-space: normal; word-break: break-all; }
.page-cell a { color: var(--teal); text-decoration: none; }
#csv-file { margin-bottom: 10px; }
#csv-paste, #sa-json {
  width: 100%;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  padding: 11px 13px;
  background: #f7faf8;
  font-family: ui-monospace, monospace;
  font-size: 0.82rem;
  resize: vertical;
}
