
.right-rail {
  position: absolute;
  left: 1307px;
  top: 81px;
  width: 348px;
}

.ledger-panel {
  height: 281px;
  padding: 11px 12px;
}

.ledger-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 5px;
  margin-top: 10px;
}

.ledger-card {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
  grid-template-rows: 25px 27px 15px;
  gap: 1px 7px;
  align-content: center;
  height: 98px;
  padding: 6px 8px;
  overflow: hidden;
  border: 1px solid rgba(69, 135, 209, 0.52);
  border-radius: 4px;
  background: linear-gradient(135deg, rgba(55, 40, 31, 0.72), rgba(6, 36, 75, 0.64));
}

.ledger-card.green {
  background: linear-gradient(135deg, rgba(12, 77, 72, 0.75), rgba(7, 36, 72, 0.66));
}

.ledger-card.orange {
  background: linear-gradient(135deg, rgba(80, 34, 25, 0.75), rgba(26, 28, 58, 0.68));
}

.ledger-card.blue {
  background: linear-gradient(135deg, rgba(12, 67, 128, 0.76), rgba(5, 30, 70, 0.66));
}

.ledger-title {
  display: contents;
  font-size: 13px;
  font-weight: 900;
  line-height: 15px;
  white-space: nowrap;
}

.ledger-title span {
  grid-column: 2;
  grid-row: 1;
  align-self: center;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ledger-icon,
.quick-icon {
  width: 35px;
  height: 35px;
  font-size: 18px;
}

.ledger-icon {
  grid-column: 1;
  grid-row: 1;
  align-self: center;
  justify-self: center;
  width: 30px;
  height: 30px;
  font-size: 16px;
}

.ledger-value {
  grid-column: 2;
  grid-row: 2;
  align-self: center;
  margin: 0;
  padding: 0;
  color: var(--gold);
  font-size: 25px;
  font-weight: 900;
  line-height: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ledger-sub {
  grid-column: 2;
  grid-row: 3;
  align-self: center;
  margin: 0;
  padding: 0;
  color: #ffbd63;
  font-size: 12px;
  line-height: 14px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.structure-panel {
  height: 226px;
  margin-top: 10px;
  padding: 12px 13px;
}

.section-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.section-head p {
  margin: 6px 0 0;
  color: #9bb9d8;
  font-size: 12px;
}

.section-head button {
  width: 87px;
  height: 30px;
  padding: 0;
  font-size: 13px;
}

.gas-body {
  display: grid;
  grid-template-columns: 158px 1fr;
  gap: 12px;
  align-items: center;
  margin-top: 12px;
}

.donut {
  display: grid;
  width: 137px;
  height: 137px;
  place-items: center;
  border-radius: 50%;
  background: conic-gradient(#35a2ff 0 71.7%, #81dbb5 71.7% 87.9%, #ffbd36 87.9% 100%);
}

.donut::before {
  position: absolute;
  width: 92px;
  height: 92px;
  content: "";
  border-radius: 50%;
  background: #06214d;
  box-shadow: inset 0 0 22px rgba(66, 171, 255, 0.4);
}

.donut div {
  position: relative;
  z-index: 1;
  text-align: center;
}

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

.donut strong {
  font-size: 21px;
  font-weight: 900;
}

.donut span,
.gas-legend {
  color: #c4daf1;
  font-size: 12px;
}

.gas-line {
  display: grid;
  grid-template-columns: 12px 35px 48px 1fr;
  gap: 7px;
  align-items: center;
  margin-bottom: 14px;
}

.quick-panel {
  height: 325px;
  margin-top: 10px;
  padding: 12px;
}

.quick-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px 14px;
  margin-top: 16px;
}

.quick-card {
  position: relative;
  display: grid;
  height: 95px;
  min-width: 0;
  place-items: center;
  padding: 10px 6px;
  overflow: hidden;
  border: 1px solid rgba(47, 125, 211, 0.5);
  border-radius: 5px;
  background: rgba(5, 31, 72, 0.68);
  text-align: center;
}

.quick-card > div {
  display: grid;
  min-width: 0;
  place-items: center;
}

.quick-badge {
  position: absolute;
  top: 8px;
  right: 12px;
  display: grid;
  min-width: 18px;
  height: 18px;
  place-items: center;
  border-radius: 9px;
  background: rgba(6, 19, 39, 0.9);
  font-size: 12px;
  font-weight: 900;
}

.quick-title {
  margin-top: 7px;
  max-width: 100%;
  overflow: hidden;
  font-size: 13px;
  font-weight: 900;
  line-height: 16px;
  text-overflow: ellipsis;
  white-space: nowrap;
}
