/*!*************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[13].oneOf[12].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[13].oneOf[12].use[3]!./app/globals.css ***!
  \*************************************************************************************************************************************************************************************************************************************************************/
:root {
  color-scheme: light;
  --bg: #f3f6fb;
  --ink: #111827;
  --muted: #64748b;
  --line: #d7e0ea;
  --panel: #ffffff;
  --brand: #0b6e99;
  --brand-2: #0a4f7a;
  --chip: #eef6ff;
}
html {
  scrollbar-gutter: stable;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: "Manrope", "Segoe UI", Arial, sans-serif;
  background: var(--bg);
  color: var(--ink);
  overflow-y: scroll;
}
a { color: var(--brand); text-decoration: none; }
.container { max-width: 1120px; margin: 0 auto; padding: 24px; }
.card { background: var(--panel); border: 1px solid var(--line); border-radius: 14px; padding: 16px; box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04); }
.grid { display: grid; grid-gap: 12px; gap: 12px; }
.grid-2 { grid-template-columns: 1fr 1fr; }
@media (max-width: 900px) { .grid-2 { grid-template-columns: 1fr; } }

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

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

.kpi-card {
  padding: 14px;
}

.kpi-label {
  color: var(--muted);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.kpi-value {
  margin-top: 6px;
  font-size: 1.45rem;
  font-weight: 800;
  line-height: 1.2;
}

.kpi-trend {
  margin-top: 8px;
  font-size: 0.82rem;
  font-weight: 600;
}

.kpi-trend.up {
  color: #0f766e;
}

.kpi-trend.down {
  color: #b42318;
}

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

.bk-shell.sidebar-collapsed {
  grid-template-columns: 74px 1fr;
}

.bk-sidebar {
  background: linear-gradient(180deg, #0c2740, #123a5a 70%, #15446a);
  color: #ecfeff;
  padding: 20px 14px;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: auto;
}

.bk-sidebar-toggle {
  width: 100%;
  margin-bottom: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: #dbeafe;
  border-color: rgba(255, 255, 255, 0.2);
}

.bk-sidebar h2 {
  margin: 0;
  letter-spacing: 0.01em;
  font-size: 1.02rem;
}

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

.bk-brand-text {
  min-width: 0;
}

.bk-brand-mark {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: linear-gradient(160deg, #38bdf8, #0ea5e9);
  color: #03263b;
  font-weight: 800;
  display: grid;
  place-items: center;
}

.bk-meta {
  color: #94a3b8;
  font-size: 0.84rem;
}

.bk-sidebar .bk-meta {
  color: #bbf7d0;
}

.bk-nav {
  display: grid;
  grid-gap: 8px;
  gap: 8px;
  margin-top: 12px;
}

.bk-nav-btn {
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 9px;
  background: transparent;
  color: #dbeafe;
  text-align: left;
  padding: 9px 11px;
  cursor: pointer;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}

.bk-nav-quick {
  background: linear-gradient(135deg, #0f6ab7 0%, #0e82ce 100%);
  border-color: rgba(125, 211, 252, 0.75);
  border-radius: 999px;
  justify-content: center;
  text-align: center;
  padding: 5px 10px;
  font-size: 0.82rem;
  min-height: 30px;
  width: 132px;
}

.bk-nav-quick:hover {
  background: rgba(14, 116, 180, 1);
}

.bk-nav-newmenu {
  position: relative;
  width: 100%;
  display: grid;
  justify-items: center;
}

.bk-nav-newmenu > summary {
  list-style: none;
}

.bk-nav-newmenu > summary::-webkit-details-marker {
  display: none;
}

.bk-nav-newmenu > summary::marker {
  content: "";
}

.bk-nav-newmenu-panel {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: calc(100% + 6px);
  min-width: 190px;
  display: grid;
  grid-gap: 6px;
  gap: 6px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 10px;
  background: rgba(2, 6, 23, 0.3);
  z-index: 35;
  box-shadow: 0 8px 18px rgba(2, 6, 23, 0.35);
}
.bk-nav-btn.is-active {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.6);
  color: #ffffff;
}

.bk-nav-icon {
  width: 16px;
  text-align: center;
  opacity: 0.9;
}

.bk-shell.sidebar-collapsed .bk-brand-text,
.bk-shell.sidebar-collapsed .bk-nav-label {
  display: none;
}

.bk-shell.sidebar-collapsed .bk-nav-btn {
  justify-content: center;
}

.bk-main {
  padding: 20px;
  display: grid;
  grid-gap: 12px;
  gap: 12px;
  max-width: 1320px;
  align-content: start;
  align-items: start;
}

.bk-main > .card,
.bk-main > section {
  min-width: 0;
  max-width: 100%;
}

.bk-pagehead {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

.bk-breadcrumbs {
  color: var(--muted);
  font-size: 0.84rem;
}

.bk-pagehead-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.bk-global {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  border-radius: 12px;
  padding: 12px 14px;
}

.bk-global-left,
.bk-global-right {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.bk-global input {
  min-width: 320px;
}

.bk-new-menu {
  position: relative;
}

.bk-new-menu > summary {
  list-style: none;
}

.bk-new-menu > summary::-webkit-details-marker {
  display: none;
}

.bk-new-menu-panel {
  position: absolute;
  left: 0;
  top: calc(100% + 6px);
  min-width: 190px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.12);
  display: grid;
  grid-gap: 6px;
  gap: 6px;
  padding: 8px;
  z-index: 28;
}

.bk-subnav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

.bk-subnav-items {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  flex-wrap: wrap;
  margin-left: auto;
}

.bk-subnav-mobile {
  display: none;
}

.bk-subnav-btn {
  background: var(--chip);
  color: var(--brand-2);
  border-color: #cfe3f6;
  font-weight: 600;
}

@media (min-width: 901px) {
  .bk-subnav {
    flex-wrap: nowrap;
    align-items: center;
  }
  .bk-subnav > :first-child {
    flex: 0 0 auto;
  }
  .bk-subnav-items {
    flex: 1 1 auto;
    justify-content: flex-end;
    flex-wrap: nowrap;
    min-width: 0;
    overflow-x: auto;
    scrollbar-width: none;
  }
  .bk-subnav-items::-webkit-scrollbar {
    display: none;
  }
  .bk-subnav-btn {
    white-space: nowrap;
    flex: 0 0 auto;
  }
  .bk-breadcrumbs {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
  }
  .bk-header-left {
    min-width: 0;
  }
}

.bk-subnav-btn.is-active {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
}

.bk-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.bk-header-left {
  display: grid;
  align-items: start;
  grid-gap: 6px;
  gap: 6px;
}

.bk-header-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  flex-wrap: wrap;
}

.bk-header-right input {
  min-width: 240px;
}

.bk-entity-menu {
  max-width: 100%;
}

.bk-entity-menu-trigger {
  max-width: 100%;
}

.bk-entity-name {
  display: inline-block;
  max-width: min(56vw, 420px);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  vertical-align: bottom;
}

.bk-title-with-guide {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.bk-guide-trigger {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  padding: 0;
  display: inline-grid;
  place-items: center;
  font-weight: 800;
  line-height: 1;
}

.bk-guide-popup {
  position: fixed;
  width: min(520px, calc(100vw - 24px));
  z-index: 60;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.2);
}

.bk-guide-popup-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 8px 10px;
  border-bottom: 1px solid #e5e7eb;
  cursor: move;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.bk-guide-popup-body {
  padding: 10px 12px 12px;
}

.bk-header h1 {
  margin: 0;
  font-size: 1.2rem;
}

.bk-mobile-nav,
.bk-mobile-fab-wrap,
.bk-mobile-more-sheet {
  display: none;
}

.bk-toolbar {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.bk-user-menu {
  position: relative;
}

.bk-user-menu-trigger {
  list-style: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  cursor: pointer;
}

.bk-user-menu-trigger::-webkit-details-marker {
  display: none;
}

.bk-user-email {
  max-width: 220px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 0.84rem;
}

.bk-user-avatar {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.88rem;
  color: #0f172a;
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  border: 1px solid #93c5fd;
}

.bk-user-menu-panel {
  position: absolute;
  right: 0;
  top: calc(100% + 6px);
  min-width: 180px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.12);
  display: grid;
  z-index: 30;
}

.bk-user-menu-head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-bottom: 1px solid #e5e7eb;
}

.bk-user-menu-panel a {
  padding: 10px 12px;
  color: var(--ink);
  text-decoration: none;
  font-size: 0.9rem;
}

.bk-user-menu-panel a:hover {
  background: #f4f8fd;
}

.bk-entity-menu {
  position: relative;
}

.bk-entity-menu-trigger {
  list-style: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  cursor: pointer;
}

.bk-entity-menu-trigger::-webkit-details-marker {
  display: none;
}

.bk-entity-avatar {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #eef6ff;
  border: 1px solid #cfe3f6;
  font-size: 0.9rem;
}

.bk-entity-name {
  max-width: 240px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 0.88rem;
  font-weight: 700;
}

.bk-entity-menu-panel {
  position: absolute;
  right: 0;
  top: calc(100% + 6px);
  min-width: 460px;
  max-width: min(92vw, 560px);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.12);
  display: grid;
  grid-gap: 10px;
  gap: 10px;
  padding: 10px 12px;
  z-index: 31;
}

.bk-entity-menu-head {
  display: grid;
  grid-gap: 3px;
  gap: 3px;
}

.bk-entity-line {
  font-size: 0.96rem;
}

.bk-entity-actions {
  display: flex;
  gap: 8px;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.compact-ui .card {
  padding: 10px 12px;
}

.compact-ui .bk-main {
  gap: 8px;
}

.compact-ui .bk-header h1 {
  font-size: 1.05rem;
}

.compact-ui .bk-meta {
  font-size: 0.8rem;
}

label {
  display: grid;
  grid-gap: 4px;
  gap: 4px;
  font-size: 0.85rem;
}

input,
select,
button {
  border: 1px solid var(--line);
  border-radius: 9px;
  padding: 8px 10px;
  font: inherit;
}

button {
  background: #fff;
  color: var(--ink);
  cursor: pointer;
  font-weight: 600;
}

button:hover {
  border-color: #b7c5d6;
}

.bk-global button,
.bk-actions button {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
}

.bk-global button:hover,
.bk-actions button:hover {
  background: var(--brand-2);
  border-color: var(--brand-2);
}

.bk-form h3 {
  margin-top: 0;
}

.bk-actions {
  margin-top: 8px;
  display: flex;
  justify-content: flex-end;
}

.btn {
  border-radius: 9px;
  border: 1px solid var(--line);
  padding: 7px 10px;
  font-weight: 700;
}

.btn-primary {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
}

.btn-primary:hover {
  background: var(--brand-2);
  border-color: var(--brand-2);
}

.btn-secondary {
  background: #e8f2fb;
  color: #0e3b5a;
  border-color: #c8ddf0;
}

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

.table-head-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.table-filters {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr;
  grid-gap: 8px;
  gap: 8px;
  margin-bottom: 8px;
}

.bk-connections {
  max-width: 100%;
  overflow: hidden;
}

.bk-connections .table-filters {
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.bk-connections .table-filters > * {
  min-width: 0;
  max-width: 100%;
}

.bk-connections .muted {
  overflow-wrap: anywhere;
}

.table-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.84rem;
}

.pager {
  display: flex;
  align-items: center;
  gap: 8px;
}

.txn-main {
  font-weight: 600;
}

.txn-sub {
  color: var(--muted);
  font-size: 0.78rem;
  margin-top: 2px;
}

.txn-table td.pos {
  color: #0f766e;
  font-weight: 700;
}

.txn-table td.neg {
  color: #b42318;
  font-weight: 700;
}

.empty-row {
  padding: 16px 0;
  text-align: center;
  color: var(--muted);
}

.bk-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(7, 13, 24, 0.52);
  display: grid;
  place-items: center;
  z-index: 99;
  padding: 12px;
}

.bk-modal {
  width: min(560px, 94vw);
}

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

.table-head h3 {
  margin: 0;
}

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

.txn-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 620px;
}

.txn-table th,
.txn-table td {
  padding: 10px 8px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  font-size: 0.9rem;
}

.txn-table th {
  color: var(--muted);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: 700;
}

.txn-table td.num,
.txn-table th.num {
  text-align: right;
}

.chip {
  display: inline-flex;
  align-items: center;
  padding: 3px 8px;
  border-radius: 999px;
  background: #eef2f7;
  color: #3b4a5a;
  font-size: 0.74rem;
  font-weight: 700;
}

.chip.ok {
  background: #e9f9ef;
  color: #117a37;
}

.chip.warn {
  background: #fff4e6;
  color: #9a4b00;
}

code {
  background: #e2e8f0;
  padding: 1px 6px;
  border-radius: 6px;
}

@media (max-width: 1024px) {
  .bk-shell {
    grid-template-columns: 1fr;
  }
  .bk-sidebar {
    display: none;
  }
  .bk-main {
    padding: 12px;
    padding-bottom: 96px;
  }
  .bk-header {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 10px;
    gap: 10px;
    position: relative;
  }
  .bk-header-left,
  .bk-header-right {
    width: 100%;
  }
  .bk-header-right {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 8px;
    gap: 8px;
    justify-items: stretch;
    padding-right: 52px;
  }
  .bk-header-right input,
  .bk-header-right label,
  .bk-header-right select {
    width: 100%;
    min-width: 0;
  }
  .bk-header-right label {
    display: grid;
    grid-gap: 4px;
    gap: 4px;
  }
  .bk-user-menu {
    position: absolute;
    right: 10px;
    top: 10px;
    z-index: 20;
  }
  .bk-breadcrumbs {
    font-size: 0.78rem;
    overflow-wrap: anywhere;
  }
  .bk-entity-menu-panel {
    position: fixed;
    left: 12px;
    right: 12px;
    top: 68px;
    width: calc(100vw - 24px);
    min-width: 0;
    max-width: none;
    max-height: calc(100vh - 150px);
    overflow: auto;
    z-index: 70;
    box-sizing: border-box;
    padding: 10px;
  }
  .bk-entity-menu-panel > * {
    min-width: 0;
  }
  .bk-entity-menu-panel label,
  .bk-entity-menu-panel select,
  .bk-entity-menu-panel input,
  .bk-entity-menu-panel textarea {
    width: 100%;
    min-width: 0;
    box-sizing: border-box;
  }
  .bk-entity-menu-trigger {
    max-width: 100%;
  }
  .bk-entity-name {
    max-width: min(58vw, 360px);
  }
  .table-head {
    flex-wrap: wrap;
    align-items: flex-start;
  }
  .table-head > * {
    min-width: 0;
  }
  .kpi-grid {
    grid-template-columns: 1fr 1fr;
  }
  .bk-subnav-items {
    display: none;
  }
  .bk-subnav-mobile {
    display: block;
    width: 100%;
  }
  .bk-subnav-mobile select {
    width: 100%;
  }
  .bk-mobile-nav {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    border-top: 1px solid var(--line);
    z-index: 55;
    padding: 6px 4px calc(6px + env(safe-area-inset-bottom));
  }
  .bk-mobile-tab {
    border: 0;
    background: transparent;
    color: #64748b;
    display: grid;
    justify-items: center;
    grid-gap: 2px;
    gap: 2px;
    font-size: 0.72rem;
    padding: 4px 2px;
  }
  .bk-mobile-tab.is-active {
    color: var(--brand);
    font-weight: 700;
  }
  .bk-mobile-tab > span {
    font-size: 1rem;
    line-height: 1;
  }
  .bk-mobile-fab-wrap {
    display: block;
    position: fixed;
    right: 14px;
    bottom: calc(62px + env(safe-area-inset-bottom));
    z-index: 56;
  }
  .bk-mobile-fab {
    width: 54px;
    height: 54px;
    border-radius: 999px;
    border: 1px solid #0b76bd;
    background: linear-gradient(135deg, #0f6ab7 0%, #0e82ce 100%);
    color: white;
    font-size: 1.6rem;
    line-height: 1;
    box-shadow: 0 8px 18px rgba(14, 116, 180, 0.35);
  }
  .bk-mobile-fab-menu {
    position: absolute;
    right: 0;
    bottom: 62px;
    min-width: 170px;
    display: grid;
    grid-gap: 6px;
    gap: 6px;
    padding: 8px;
  }
  .bk-mobile-more-sheet {
    display: grid;
    grid-gap: 6px;
    gap: 6px;
    position: fixed;
    left: 10px;
    right: 10px;
    bottom: calc(66px + env(safe-area-inset-bottom));
    z-index: 56;
    padding: 10px;
    max-width: none;
  }
  .bk-mobile-more-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    padding: 8px 10px;
    text-align: left;
    color: #334155;
  }
  .bk-mobile-more-btn.is-active {
    border-color: #93c5fd;
    background: #eff6ff;
    color: #1d4ed8;
    font-weight: 700;
  }
  .bk-guide-popup {
    left: 12px !important;
    right: 12px;
    top: 12px !important;
    width: auto;
    max-width: none;
    max-height: calc(100vh - 120px);
    overflow: auto;
    z-index: 70;
  }
  .bk-guide-popup-head {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    background: #fff;
    z-index: 1;
    cursor: default;
  }
}

@media (max-width: 900px) {
  .table-filters {
    grid-template-columns: 1fr;
  }
  .kpi-grid {
    grid-template-columns: 1fr;
  }
  .bk-main {
    gap: 10px;
  }
  .card {
    padding: 10px;
  }
  .bk-subnav {
    gap: 8px;
  }
  .bk-subnav-mobile {
    width: 100%;
  }
  .bk-subnav-mobile select {
    width: 100%;
    min-width: 0;
  }
}

.builder-dock {
  display: grid;
  grid-gap: 10px;
  gap: 10px;
}

.builder-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.builder-head h3 {
  margin: 0;
}

.builder-log {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #f8fafc;
  max-height: 220px;
  overflow: auto;
  padding: 10px;
  display: grid;
  grid-gap: 8px;
  gap: 8px;
}

.builder-msg {
  font-size: 0.86rem;
  line-height: 1.35;
}

.builder-msg.user strong {
  color: #0f766e;
}

.builder-input {
  display: grid;
  grid-template-columns: 1fr auto auto auto;
  grid-gap: 8px;
  gap: 8px;
}

.builder-input textarea {
  resize: vertical;
  min-height: 70px;
}

.builder-proposal {
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 10px;
  background: #fff;
}

.builder-proposal h4 {
  margin: 0 0 6px 0;
}

.builder-edit {
  border-top: 1px dashed var(--line);
  padding-top: 8px;
  margin-top: 8px;
}

.builder-edit pre {
  margin: 6px 0 0 0;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 8px;
  white-space: pre-wrap;
}

.builder-edit-reason {
  color: var(--muted);
  font-size: 0.82rem;
}

@media (max-width: 900px) {
  .builder-input {
    grid-template-columns: 1fr;
  }
}

.chart-grid {
  display: grid;
  grid-gap: 0.55rem;
  gap: 0.55rem;
}

.chart-row {
  display: grid;
  grid-template-columns: 110px 1fr 110px;
  grid-gap: 0.55rem;
  gap: 0.55rem;
  align-items: center;
  font-size: 0.85rem;
}

.chart-bar-track {
  height: 9px;
  border-radius: 999px;
  background: rgba(39, 110, 241, 0.14);
  overflow: hidden;
}

.chart-bar-fill {
  height: 100%;
  border-radius: inherit;
}

.chart-bar-fill.pos {
  background: linear-gradient(90deg, #0a7f43, #00a37a);
}

.chart-bar-fill.neg {
  background: linear-gradient(90deg, #e07a00, #d14f26);
}

.donut-wrap {
  display: grid;
  place-items: center;
  margin-bottom: 0.55rem;
}

.donut-total {
  fill: #13253a;
  font-size: 0.7rem;
  font-weight: 700;
}

