.js-graph-info {
  display: none;
}
.chart-container {
  position: relative;
  max-height: calc(100vh - 210px);
}
@media (max-width: 575.98px) {
  .chart-container {
    max-height: calc(100vh - 280px);
  }
}
/* Custom tooltip for Chart.js */
.custom-chart-tooltip {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  background: rgba(64, 64, 64, 0.95);
  color: white;
  border-radius: 6px;
  transition: opacity .1s ease;
  pointer-events: none;
  padding: 12px 16px;
  font-family: 'Helvetica Neue', 'Helvetica', 'Arial', sans-serif;
  font-size: 13px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
  width: auto;
  box-sizing: border-box;
  z-index: 1100;
}
.custom-chart-tooltip[style*="opacity: 1"],
.custom-chart-tooltip[style*="opacity:1"] {
  visibility: visible;
}
.custom-chart-tooltip .tooltip-title {
  font-weight: bold;
  margin-bottom: 8px;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  padding-bottom: 4px;
}
.custom-chart-tooltip .tooltip-body-item {
  margin-bottom: 6px;
}
.custom-chart-tooltip .tooltip-color-box {
  width: 11px;
  height: 11px;
  margin-right: 8px;
  display: inline-block;
  border: 1px solid rgba(255,255,255,0.4);
}
.custom-chart-tooltip .tooltip-label {
  display: inline-block;
  text-align: left;
  flex-shrink: 0;
  white-space: wrap;
}
.custom-chart-tooltip .tooltip-colon {
  display: inline-block;
  font-weight: normal;
  color: rgba(255, 255, 255, 0.8);
  flex-shrink: 0;
}
.custom-chart-tooltip .tooltip-value {
  font-weight: bold;
  white-space: nowrap;
}