.chart-box {
  margin-top: 16px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: rgba(8,10,15,.72);
  padding: 14px;
}

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

.chart-title {
  font-weight: 950;
  font-size: 15px;
}

.chart-tabs {
  display: flex;
  gap: 9px;
}

.chart-tab {
  height: 36px;
  min-height: 36px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  color: var(--muted);
  padding: 0 14px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
}

.chart-tab.active {
  border-color: rgba(84,240,120,.68);
  background: var(--green-soft);
  color: #d4ffdc;
}

.chart-stage {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 78px;
  gap: 0;
  min-height: 285px;
}

.chart-area {
  height: 285px;
  border-radius: 10px 0 0 10px;
  background:
    linear-gradient(rgba(255,255,255,.075) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.075) 1px, transparent 1px),
    linear-gradient(180deg, rgba(106,162,255,.18), transparent 70%);
  background-size: 100% 48px, 25% 100%, 100% 100%;
  overflow: hidden;
}

.chart-svg {
  width: 100%;
  height: 100%;
}

.chart-line {
  fill: none;
  stroke: #6aa2ff;
  stroke-width: .55;
  vector-effect: non-scaling-stroke;
  filter: drop-shadow(0 0 3px rgba(106,162,255,.24));
}

.chart-price-axis {
  height: 285px;
  border-radius: 0 10px 10px 0;
  background: rgba(5,7,11,.72);
  color: var(--muted);
  font-size: 11px;
  position: relative;
  border-left: 1px solid rgba(255,255,255,.08);
}

.axis-label {
  position: absolute;
  right: 8px;
  transform: translateY(-50%);
  white-space: nowrap;
}

.axis-label.top { top: 7%; color: var(--text); font-weight: 850; }
.axis-label.mid { top: 50%; }
.axis-label.bottom { top: 93%; }

.chart-title {
  font-size: 16px !important;
}

.chart-tab {
  height: 40px !important;
  min-height: 40px !important;
  padding: 0 16px !important;
  font-size: 14.5px !important;
  font-weight: 950 !important;
}

.chart-stage {
  grid-template-columns: minmax(0, 1fr) 78px !important;
  min-height: 285px !important;
}

.chart-area {
  height: 285px !important;
}

.chart-price-axis {
  height: 285px !important;
}

.chart-line {
  stroke-width: 1.25 !important;
  vector-effect: non-scaling-stroke !important;
  filter: drop-shadow(0 0 5px rgba(106,162,255,.35)) !important;
}

.chart-line {
  stroke-width: 1.55 !important;
  vector-effect: non-scaling-stroke !important;
  stroke-linecap: round !important;
  stroke-linejoin: round !important;
  filter: drop-shadow(0 0 5px rgba(106,162,255,.26)) !important;
}

.chart-title {
  font-size: 16px !important;
  font-weight: 950 !important;
}

.chart-tabs {
  gap: 9px !important;
}

.chart-tab {
  height: 42px !important;
  min-height: 42px !important;
  padding: 0 18px !important;
  font-size: 15px !important;
  font-weight: 950 !important;
}

.chart-line {
  stroke-width: 1.75 !important;
  vector-effect: non-scaling-stroke !important;
  stroke-linecap: round !important;
  stroke-linejoin: round !important;
  filter: drop-shadow(0 0 5px rgba(106,162,255,.32)) !important;
}

.chart-price-axis {
  font-size: 12px !important;
}

.axis-label {
  right: 9px !important;
}
