/* NM Chart Hover Tooltip
   Floating hover tooltip for the static Recharts charts on the homepage:
   the Remediation Velocity bar chart and the Identity Maturity line chart.
   Project prefix: nm-. */
.nm-chart-tooltip {
  position: fixed;
  z-index: 9999;
  margin: 0;
  padding: 10px;
  pointer-events: none;
  background-color: #fff;
  border: 1px solid rgba(18, 20, 23, 0.063);
  border-radius: 4px;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  color: rgb(18, 20, 23);
  font-family: Inter, sans-serif;
  font-size: 13px;
  line-height: 1.5;
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.12s ease;
}
.nm-chart-tooltip.is-visible { opacity: 1; }
.nm-chart-tooltip__label { margin: 0 0 4px; font-weight: 500; }
.nm-chart-tooltip__list { margin: 0; padding: 0; list-style: none; }
.nm-chart-tooltip__item { margin: 0; }
.nm-chart-tooltip__item--resolved { color: #bf9927; }
.nm-chart-tooltip__item--vulnerability { color: #9a9385; }
.nm-chart-tooltip__item--adoption { color: #b87333; }
.nm-chart-cursor { fill: rgba(191, 153, 39, 0.06); pointer-events: none; }
.nm-chart-cursor-line { stroke: #ccc; stroke-width: 1; pointer-events: none; }
.nm-chart-active-dot { pointer-events: none; }