@font-face {
  font-family: "Inter";
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  src: url("/cloudbit-assets/fonts/Inter-Regular.woff2") format("woff2");
}

@font-face {
  font-family: "Inter";
  font-weight: 600;
  font-style: normal;
  font-display: swap;
  src: url("/cloudbit-assets/fonts/Inter-SemiBold.woff2") format("woff2");
}

@font-face {
  font-family: "IBMPlexSans";
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  src: url("/cloudbit-assets/fonts/IBMPlexSans-Regular.woff2") format("woff2");
}

:root {
  --bg: #0c0d13;
  --panel: rgba(255, 255, 255, 0.027);
  --panel-strong: rgba(255, 255, 255, 0.045);
  --border: rgba(255, 255, 255, 0.088);
  --border-strong: rgba(255, 255, 255, 0.14);
  --text: #ffffff;
  --muted: rgba(255, 255, 255, 0.54);
  --soft: rgba(255, 255, 255, 0.72);
  --main: #00e5ff;
  --green: #7bff00;
  --red: #ff4646;
  --amber: #ffcb69;
  --font: "Inter", Arial, sans-serif;
  --mono: "IBMPlexSans", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
}

* {
  box-sizing: border-box;
}

html {
  font-size: 10px;
  background: var(--bg);
}

body {
  margin: 0;
  overflow: hidden;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
}

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

.checkup-shell {
  height: 100dvh;
  min-height: 68rem;
  overflow: hidden;
  display: grid;
  grid-template-rows: 4.4rem 5.6rem 7.2rem minmax(0, 1fr);
  gap: 1rem;
  padding: 1.2rem;
}

.topbar,
.query-row,
.kpi-strip,
.panel {
  border: 1px solid var(--border);
  background: var(--panel);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035);
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-radius: 1rem;
  padding: 0 1.2rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  min-width: 22rem;
}

.logo {
  width: 13.5rem;
  height: 2.6rem;
  display: inline-flex;
  color: var(--text);
}

.logo svg {
  width: 100%;
  height: 100%;
}

.page-title {
  font-size: 1.35rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.86);
  white-space: nowrap;
}

.source-strip,
.top-actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.source-chip,
.build-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  min-height: 2.6rem;
  padding: 0.35rem 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0.8rem;
  background: rgba(255, 255, 255, 0.03);
  color: rgba(255, 255, 255, 0.66);
  font-size: 1.02rem;
  line-height: 1;
  white-space: nowrap;
}

.source-chip span {
  width: 0.68rem;
  height: 0.68rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
}

.source-chip.is-ok span {
  background: var(--green);
}

.source-chip.is-error span {
  background: var(--red);
}

.source-chip.is-warn span {
  background: var(--amber);
}

.icon-btn,
.mini-btn,
.segmented button {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.8);
  transition: 0.18s ease;
}

.icon-btn {
  width: 3rem;
  height: 3rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.8rem;
}

.icon-btn svg {
  width: 1.7rem;
  height: 1.7rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon-btn:hover,
.mini-btn:hover,
.segmented button:hover {
  border-color: rgba(0, 229, 255, 0.32);
  color: #ffffff;
  background: rgba(0, 229, 255, 0.075);
}

.icon-btn:active,
.mini-btn:active,
.segmented button:active {
  transform: translateY(1px);
}

.query-row {
  display: grid;
  grid-template-columns: minmax(30rem, 1fr) 16rem;
  gap: 0.85rem;
  align-items: end;
  border-radius: 1rem;
  padding: 0.75rem 0.9rem;
  overflow: visible;
  position: relative;
  z-index: 12;
}

.query-input,
.network-select {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.38rem;
  position: relative;
}

.query-input > span,
.network-select > span {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.95rem;
  line-height: 1;
}

.query-input input {
  width: 100%;
  height: 3rem;
  min-width: 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.8rem;
  outline: none;
  background: rgba(255, 255, 255, 0.035);
  color: #ffffff;
  padding: 0 1rem;
  font-size: 1.12rem;
}

.query-input input:focus {
  border-color: rgba(0, 229, 255, 0.42);
  box-shadow: 0 0 0 0.15rem rgba(0, 229, 255, 0.08);
}

.native-network-select {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.network-picker {
  position: relative;
  min-width: 0;
}

.network-trigger {
  width: 100%;
  height: 3rem;
  min-width: 0;
  display: grid;
  grid-template-columns: 2.25rem minmax(0, 1fr) 1.8rem;
  align-items: center;
  gap: 0.62rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.8rem;
  outline: none;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.022)),
    rgba(255, 255, 255, 0.035);
  color: #ffffff;
  padding: 0 0.48rem 0 0.56rem;
  text-align: left;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.055);
  transition: border-color 0.18s ease, background 0.18s ease, transform 0.18s ease;
}

.network-trigger:hover,
.network-picker.is-open .network-trigger,
.network-trigger:focus-visible {
  border-color: rgba(0, 229, 255, 0.42);
  background:
    linear-gradient(135deg, rgba(0, 229, 255, 0.09), rgba(123, 255, 0, 0.035)),
    rgba(255, 255, 255, 0.045);
  box-shadow: 0 0 0 0.15rem rgba(0, 229, 255, 0.07), inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

.network-trigger:active {
  transform: translateY(1px);
}

.network-trigger-text {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 1.08rem;
  font-weight: 600;
}

.network-trigger svg {
  width: 1.65rem;
  height: 1.65rem;
  justify-self: end;
  fill: none;
  stroke: rgba(255, 255, 255, 0.64);
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.18s ease, stroke 0.18s ease;
}

.network-picker.is-open .network-trigger svg {
  transform: rotate(180deg);
  stroke: var(--main);
}

.network-menu {
  position: absolute;
  top: calc(100% + 0.55rem);
  left: 0;
  width: min(28rem, calc(100vw - 2.4rem));
  max-height: 42rem;
  overflow: auto;
  display: none;
  padding: 0.45rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 1rem;
  background: rgba(13, 16, 26, 0.98);
  box-shadow: 0 2.2rem 4.8rem rgba(0, 0, 0, 0.42), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(16px);
  z-index: 40;
}

.network-picker.is-open .network-menu {
  display: block;
}

.network-menu button {
  width: 100%;
  min-height: 3.28rem;
  display: grid;
  grid-template-columns: 2.45rem minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.72rem;
  border: 1px solid transparent;
  border-radius: 0.76rem;
  background: transparent;
  color: rgba(255, 255, 255, 0.86);
  padding: 0.42rem 0.62rem;
  text-align: left;
}

.network-menu button:hover,
.network-menu button:focus-visible {
  outline: none;
  border-color: rgba(0, 229, 255, 0.16);
  background: rgba(0, 229, 255, 0.075);
}

.network-menu button[aria-selected="true"] {
  border-color: rgba(123, 255, 0, 0.2);
  background: linear-gradient(90deg, rgba(123, 255, 0, 0.095), rgba(0, 229, 255, 0.045));
}

.network-menu button span:not(.chain-icon) {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 1.04rem;
  font-weight: 600;
}

.network-menu button small {
  color: rgba(255, 255, 255, 0.44);
  font-family: var(--mono);
  font-size: 0.83rem;
  white-space: nowrap;
}

.chain-icon {
  width: 2.14rem;
  height: 2.14rem;
  display: inline-grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: transparent;
  overflow: hidden;
  box-shadow: none;
}

.chain-icon img {
  width: 1.9rem;
  height: 1.9rem;
  display: block;
  object-fit: contain;
  border-radius: 50%;
}

.kpi-strip {
  display: grid;
  grid-template-columns: 1.18fr 1fr 1fr 1fr 1fr 0.84fr;
  gap: 0;
  border-radius: 1rem;
  overflow: hidden;
}

.kpi-cell {
  min-width: 0;
  padding: 0.86rem 1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.35rem;
}

.kpi-cell:not(:last-child) {
  border-right: 1px solid rgba(255, 255, 255, 0.07);
}

.kpi-label {
  font-size: 0.92rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(0, 229, 255, 0.66);
}

.kpi-cell strong {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: #ffffff;
  font-family: var(--mono);
  font-size: 1.55rem;
  font-weight: 600;
  line-height: 1.05;
}

.kpi-cell small {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: rgba(255, 255, 255, 0.54);
  font-size: 1rem;
}

.checkup-main {
  min-height: 0;
  display: grid;
  grid-template-columns: minmax(38rem, 1.06fr) minmax(43rem, 1.18fr) minmax(31rem, 0.8fr);
  grid-template-rows: minmax(0, 1.25fr) minmax(17rem, 0.75fr);
  gap: 1rem;
}

.panel {
  min-width: 0;
  min-height: 0;
  overflow: hidden;
  border-radius: 1rem;
  display: flex;
  flex-direction: column;
}

.panel-head {
  min-height: 4.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 1rem 0.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.panel-head h2 {
  margin: 0;
  color: #ffffff;
  font-size: 1.23rem;
  line-height: 1.1;
}

.panel-head p {
  margin: 0.28rem 0 0;
  color: rgba(255, 255, 255, 0.46);
  font-size: 0.98rem;
  line-height: 1.2;
}

.mini-btn {
  min-width: 5.2rem;
  height: 2.5rem;
  border-radius: 0.72rem;
  font-size: 0.98rem;
}

.panel-dex {
  grid-column: 1;
  grid-row: 1;
}

.panel-params {
  grid-column: 1;
  grid-row: 2;
}

.panel-cex {
  grid-column: 2;
  grid-row: 1 / span 2;
}

.right-stack {
  grid-column: 3;
  grid-row: 1 / span 2;
  min-height: 0;
  display: grid;
  grid-template-rows: minmax(15rem, 1fr) minmax(12rem, 0.74fr) minmax(14rem, 0.88fr);
  gap: 1rem;
}

.data-table {
  min-height: 0;
  padding: 0.35rem 0;
  overflow: hidden;
}

.table-row {
  min-width: 0;
  min-height: 3.15rem;
  display: grid;
  align-items: center;
  gap: 0.7rem;
  padding: 0 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.052);
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.02rem;
}

.table-row > span {
  min-width: 0;
}

.table-row.is-source {
  background: linear-gradient(90deg, rgba(0, 229, 255, 0.075), rgba(0, 229, 255, 0.018));
}

.more-row {
  width: calc(100% - 2rem);
  min-height: 2.65rem;
  margin: 0.35rem 1rem 0;
  border: 1px solid rgba(0, 229, 255, 0.18);
  border-radius: 0.75rem;
  background: rgba(0, 229, 255, 0.055);
  color: rgba(219, 255, 255, 0.86);
  grid-template-columns: 1fr !important;
  text-align: left;
}

.more-row span:not(:first-child) {
  display: none;
}

.more-row:hover,
.more-row:focus-visible {
  outline: none;
  border-color: rgba(0, 229, 255, 0.35);
  background: rgba(0, 229, 255, 0.09);
}

.table-row.head {
  min-height: 2.7rem;
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.86rem;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.dex-table .table-row {
  grid-template-columns: 6.8rem 8.8rem 6.8rem 8.5rem minmax(7.2rem, 1fr);
}

.cex-table .table-row {
  min-height: 3.35rem;
  grid-template-columns: 10.2rem 10.4rem minmax(17rem, 1fr);
}

.bridge-table .table-row {
  grid-template-columns: minmax(11rem, 1fr) 6.4rem 5.6rem 7.4rem;
}

.oracle-table .table-row {
  grid-template-columns: minmax(7rem, 1fr) 8.2rem 7rem 5.4rem;
}

.wrapper-table .table-row {
  grid-template-columns: 7.4rem minmax(7rem, 1fr) 5.2rem;
}

.cell-main {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: #ffffff;
  font-weight: 600;
}

.mono,
.num {
  font-family: var(--mono);
  font-variant-numeric: tabular-nums;
}

.price-strong {
  color: #ffffff;
  font-size: 1.13rem;
  font-weight: 600;
}

.source-age,
.venue-cell,
.price-cell,
.route-cell {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 0.48rem;
}

.source-age b,
.venue-cell b,
.price-cell b,
.route-cell b {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 600;
}

.source-age small,
.venue-cell small,
.price-cell small {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: rgba(255, 255, 255, 0.46);
  font-size: 0.9rem;
}

.source-age {
  justify-content: space-between;
}

.venue-cell {
  flex-direction: column;
  align-items: flex-start;
  gap: 0.18rem;
}

.price-cell {
  flex-direction: column;
  align-items: flex-start;
  gap: 0.16rem;
  font-family: var(--mono);
  font-variant-numeric: tabular-nums;
}

.price-cell b {
  color: #ffffff;
  font-size: 1.13rem;
}

.route-cell i {
  flex: none;
  color: rgba(0, 229, 255, 0.72);
  font-style: normal;
}

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

.green {
  color: var(--green);
}

.red {
  color: #ff8b8b;
}

.amber {
  color: var(--amber);
}

.price-cell small.green {
  color: var(--green);
}

.price-cell small.red {
  color: #ff8b8b;
}

.source-age small.amber {
  color: var(--amber);
}

.status-pill,
.tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 1.9rem;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.035);
  font-size: 0.86rem;
  line-height: 1;
  white-space: nowrap;
}

.status-pill.open,
.tag.ok {
  color: #caffad;
  border-color: rgba(123, 255, 0, 0.2);
  background: rgba(123, 255, 0, 0.08);
}

.status-pill.closed,
.tag.risk {
  color: #ffb2b2;
  border-color: rgba(255, 70, 70, 0.2);
  background: rgba(255, 70, 70, 0.08);
}

.status-pill.unknown {
  color: rgba(255, 255, 255, 0.48);
}

.network-chips {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  overflow: hidden;
  white-space: nowrap;
}

.network-chip {
  flex: 0 0 auto;
  max-width: 7.4rem;
  min-height: 2rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.24rem 0.48rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0.62rem;
  background: rgba(255, 255, 255, 0.035);
  color: rgba(255, 255, 255, 0.68);
  font-style: normal;
  line-height: 1;
}

.network-chip b {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-weight: 600;
}

.network-chip span {
  flex: none;
  color: rgba(255, 255, 255, 0.46);
  font-family: var(--mono);
  font-size: 0.82rem;
}

.network-chip.ok {
  color: #d6ffc4;
  border-color: rgba(123, 255, 0, 0.2);
  background: rgba(123, 255, 0, 0.075);
}

.network-chip.warn {
  color: #ffe1a8;
  border-color: rgba(255, 203, 105, 0.22);
  background: rgba(255, 203, 105, 0.07);
}

.network-chip.risk {
  color: #ffb6b6;
  border-color: rgba(255, 70, 70, 0.2);
  background: rgba(255, 70, 70, 0.07);
}

.network-chip.unknown,
.network-chip.more,
.network-empty {
  color: rgba(255, 255, 255, 0.46);
}

.network-empty {
  font-size: 0.94rem;
}

.kv-grid {
  min-height: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  padding: 0.2rem 0;
}

.kv-item {
  min-width: 0;
  min-height: 3.22rem;
  padding: 0.55rem 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.052);
}

.kv-item:nth-child(odd) {
  border-right: 1px solid rgba(255, 255, 255, 0.052);
}

.kv-item span {
  display: block;
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.86rem;
  line-height: 1.1;
}

.kv-item strong,
.kv-item a,
.kv-item button {
  max-width: 100%;
  display: inline-flex;
  margin-top: 0.25rem;
  padding: 0;
  border: 0;
  background: none;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.02rem;
  text-decoration: none;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.kv-item a:hover,
.kv-item button:hover {
  color: var(--main);
}

.segmented {
  display: inline-flex;
  padding: 0.2rem;
  border-radius: 0.8rem;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.segmented button {
  height: 2.1rem;
  min-width: 4rem;
  border-radius: 0.62rem;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.54);
  font-size: 0.9rem;
}

.segmented button.is-active {
  color: #e5ffff;
  background: rgba(0, 229, 255, 0.12);
}

.empty-state,
.error-state {
  margin: 1rem;
  min-height: 7.4rem;
  display: grid;
  place-content: center;
  border: 1px dashed rgba(255, 255, 255, 0.12);
  border-radius: 0.9rem;
  color: rgba(255, 255, 255, 0.44);
  text-align: center;
  font-size: 1.05rem;
}

.error-state {
  color: #ffb2b2;
  border-color: rgba(255, 70, 70, 0.22);
}

.skeleton-row {
  height: 3.15rem;
  margin: 0 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.052);
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03));
  background-size: 220% 100%;
  animation: skeleton 1.1s ease-in-out infinite;
}

@keyframes skeleton {
  from { background-position: 100% 0; }
  to { background-position: -100% 0; }
}

.drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(68rem, 100vw);
  height: 100dvh;
  display: flex;
  flex-direction: column;
  background: #0d101a;
  border-left: 1px solid rgba(255, 255, 255, 0.11);
  transform: translateX(100%);
  transition: transform 0.22s ease;
  z-index: 30;
}

.drawer.is-open {
  transform: translateX(0);
}

.drawer-backdrop {
  position: fixed;
  inset: 0;
  display: none;
  background: rgba(0, 0, 0, 0.48);
  z-index: 20;
}

.drawer-backdrop.is-open {
  display: block;
}

.drawer-head {
  min-height: 5.6rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.drawer-head h2 {
  margin: 0;
  font-size: 1.45rem;
}

.drawer-head p {
  margin: 0.3rem 0 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 1rem;
}

.drawer-body {
  min-height: 0;
  overflow: auto;
  padding: 1rem;
}

.drawer-row {
  display: grid;
  grid-template-columns: 13rem minmax(0, 1fr);
  gap: 1rem;
  padding: 0.9rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  font-size: 1.05rem;
}

.drawer-row span:first-child {
  color: rgba(255, 255, 255, 0.45);
}

.drawer-row span:last-child {
  min-width: 0;
  overflow-wrap: anywhere;
  color: rgba(255, 255, 255, 0.86);
}

@media (max-width: 1200px) {
  body {
    overflow: auto;
  }

  .checkup-shell {
    height: auto;
    min-height: 100dvh;
    overflow: visible;
    grid-template-rows: auto auto auto auto;
  }

  .query-row {
    grid-template-columns: 1fr 15rem;
  }

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

  .checkup-main {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 36rem 25rem 34rem;
  }

  .panel-dex { grid-column: 1; grid-row: 1; }
  .panel-cex { grid-column: 2; grid-row: 1 / span 2; }
  .panel-params { grid-column: 1; grid-row: 2; }
  .right-stack { grid-column: 1 / span 2; grid-row: 3; grid-template-columns: repeat(3, minmax(0, 1fr)); grid-template-rows: 1fr; }
}

@media (max-width: 780px) {
  .topbar,
  .source-strip {
    flex-wrap: wrap;
    min-height: auto;
  }

  .checkup-shell {
    padding: 0.8rem;
  }

  .query-row,
  .kpi-strip,
  .checkup-main,
  .right-stack {
    display: flex;
    flex-direction: column;
  }

  .panel {
    min-height: 26rem;
  }
}
