/* ── GAUGE WRAPPER ─────────────────────────────────────────────────────────── */
.gauge-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
  font-family: inherit;
}

.gauge-svg {
  width: 100%;
  height: auto;
  overflow: visible;
}

/* ── SEGMENTOS GAUGE ────────────────────────────────────────────────────────── */
.gauge-segment {
  cursor: pointer;
  transition: opacity 0.2s ease, filter 0.2s ease;
}

.gauge-segment:hover {
  opacity: 0.85;
  filter: brightness(1.12) drop-shadow(0 2px 6px rgba(0,0,0,0.25));
}

/* ── BAR CHART WRAPPER ──────────────────────────────────────────────────────── */
.bar-chart-wrapper {
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
  font-family: inherit;
}

.bar-chart-svg {
  width: 100%;
  height: auto;
  overflow: visible;
}

/* ── SEGMENTOS BARRA ────────────────────────────────────────────────────────── */
.bar-segment {
  cursor: pointer;
  transition: opacity 0.2s ease, filter 0.2s ease;
}

.bar-segment:hover {
  opacity: 0.85;
  filter: brightness(1.12) drop-shadow(0 2px 6px rgba(0,0,0,0.25));
}

/* ── EJES Y GUÍAS ───────────────────────────────────────────────────────────── */
.bar-guide-line {
  stroke: #e0e0e0;
  stroke-width: 1;
  stroke-dasharray: 4 3;
}

.bar-axis-label {
  font-size: 11px;
  fill: #888;
}

.bar-quarter-label {
  font-size: 12px;
  fill: #444;
  font-weight: 600;
}

/* ── LEYENDA BAR CHART ──────────────────────────────────────────────────────── */
.bar-chart-legend {
  margin-top: 14px;
}

/* ── TOOLTIP ────────────────────────────────────────────────────────────────── */
.gauge-tooltip {
  position: fixed;
  background: #fff;
  visibility: visible;
  border: 1.5px solid #e0e0e0;
  border-radius: 10px;
  padding: 10px 18px;
  box-shadow: 0 4px 18px rgba(0,0,0,0.15);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.18s ease;
  z-index: 99999;
  min-width: 140px;
  min-height: 48px;
  text-align: left;
}

.gauge-tooltip.visible {
  opacity: 1 !important;
}

.gauge-tooltip .tooltip-inner {
  display: flex;
  align-items: center;
  gap: 10px;
}

.gauge-tooltip .tooltip-percent {
  font-size: 22px;
  font-weight: 700;
  color: #2e7d32;
  white-space: nowrap;
}

.gauge-tooltip .tooltip-label {
  font-size: 14px;
  font-weight: 600;
  color: #333;
  white-space: nowrap;
}

/* ── LEYENDA COMPARTIDA ─────────────────────────────────────────────────────── */
.gauge-legend {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 16px;
  margin-top: 14px;
  width: 100%;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: #444;
  cursor: pointer;
}

.legend-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  flex-shrink: 0;
}
