.reporting-page {
  --reporting-accent: var(--accent, #2867c9);
  --reporting-surface: var(--surface, #fff);
  --reporting-soft: var(--surface-soft, #f8faff);
  --reporting-border: var(--border, #dfe7f2);
  --reporting-text: var(--text, #152640);
  --reporting-muted: var(--text-muted, #50637c);
  --reporting-faint: var(--text-faint, #5f7189);
  width: 100%;
  color: var(--reporting-text);
}

.reporting-page button,
.reporting-page input,
.reporting-page select {
  font: inherit;
}

.reporting-page button:focus-visible,
.reporting-page select:focus-visible,
.reporting-page input:focus-visible {
  outline: 2px solid var(--reporting-accent);
  outline-offset: 2px;
}

.reporting-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 21px;
}

.reporting-heading h1 {
  margin: 0;
}

.reporting-heading p:last-child {
  margin: 8px 0 0;
  color: var(--reporting-muted);
  font-size: 13px;
}

.reporting-eyebrow {
  margin: 0 0 6px !important;
  color: var(--accent-strong, var(--reporting-accent)) !important;
  font-size: 10px !important;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.reporting-source-badge {
  display: inline-flex;
  min-height: 31px;
  align-items: center;
  gap: 8px;
  padding: 5px 10px;
  color: var(--positive, #176c57);
  background: var(--positive-soft, #e5f4ee);
  border: 1px solid var(--reporting-border);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 650;
  white-space: nowrap;
}

.reporting-source-badge i {
  width: 7px;
  height: 7px;
  background: currentColor;
  border-radius: 50%;
}

.reporting-source-badge.is-demo {
  color: var(--warning, #8b6125);
  background: var(--warning-soft, #f9f0e1);
}

.reporting-filter-panel {
  display: flex;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 15px;
  padding: 14px;
  background: var(--reporting-surface);
  border: 1px solid var(--reporting-border);
  border-radius: 10px;
  box-shadow: var(--card-shadow, 0 2px 16px rgb(20 46 84 / 3%));
}

.reporting-filter {
  display: grid;
  min-width: 145px;
  gap: 5px;
  color: var(--reporting-faint);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .065em;
  text-transform: uppercase;
}

.reporting-filter select {
  width: 100%;
  min-height: 36px;
  padding: 5px 29px 5px 9px;
  color: var(--reporting-text);
  background: var(--reporting-surface);
  border: 1px solid var(--reporting-border);
  border-radius: 7px;
  font-size: 12px;
  font-weight: 450;
  letter-spacing: normal;
  text-transform: none;
}

.reporting-source-select {
  min-width: 165px;
}

.reporting-scope {
  display: grid;
  gap: 2px;
  min-width: 230px;
  margin-left: auto;
  padding: 1px 2px 3px 12px;
  border-left: 1px solid var(--reporting-border);
}

.reporting-scope span {
  color: var(--reporting-faint);
  font-size: 10px;
}

.reporting-scope strong {
  font-size: 11px;
  font-weight: 600;
}

.reporting-notice {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin: 0 0 13px;
  padding: 10px 13px;
  color: var(--reporting-muted);
  background: var(--accent-soft, #eaf2ff);
  border: 1px solid var(--reporting-border);
  border-radius: 8px;
  font-size: 11px;
}

.reporting-notice strong {
  color: var(--reporting-text);
}

.reporting-notice.is-demo {
  color: var(--warning, #8b6125);
  background: var(--warning-soft, #f9f0e1);
  border-color: color-mix(in srgb, var(--warning, #8b6125) 30%, var(--reporting-border));
}

.reporting-notice.is-empty {
  display: grid;
  gap: 2px;
  background: var(--surface-soft, #f8faff);
}

.reporting-tabs {
  display: flex;
  gap: 4px;
  margin: 0 0 9px;
  padding: 4px;
  overflow-x: auto;
  background: var(--surface-muted, #edf3fb);
  border: 1px solid var(--reporting-border);
  border-radius: 9px;
  scrollbar-width: thin;
}

.reporting-tabs button {
  min-height: 36px;
  flex: 0 0 auto;
  padding: 7px 12px;
  color: var(--reporting-muted);
  border: 1px solid transparent;
  border-radius: 6px;
  background: transparent;
  cursor: pointer;
  font-size: 11px;
  font-weight: 550;
  white-space: nowrap;
}

.reporting-tabs button:hover {
  color: var(--reporting-text);
  background: var(--reporting-surface);
}

.reporting-tabs button[aria-selected="true"] {
  color: var(--accent-strong, var(--reporting-accent));
  background: var(--reporting-surface);
  border-color: var(--reporting-border);
  box-shadow: var(--card-shadow, 0 2px 10px rgb(20 46 84 / 4%));
  font-weight: 650;
}

.reporting-description {
  margin: 0 0 14px;
  color: var(--reporting-muted);
  font-size: 12px;
}

.reporting-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 14px;
}

.reporting-metrics.reporting-consumption-metrics {
  width: min(100%, 360px);
  grid-template-columns: minmax(0, 1fr);
}

.reporting-metric {
  display: flex;
  min-width: 0;
  min-height: 103px;
  flex-direction: column;
  align-items: flex-start;
  gap: 7px;
  padding: 15px 16px;
  background: var(--reporting-surface);
  border: 1px solid var(--reporting-border);
  border-radius: 9px;
  box-shadow: var(--card-shadow, 0 2px 16px rgb(20 46 84 / 3%));
}

.reporting-metric-label {
  color: var(--reporting-muted);
  font-size: 11px;
}

.reporting-metric strong {
  max-width: 100%;
  overflow-wrap: anywhere;
  font: 650 clamp(19px, 2.3vw, 26px)/1.15 ui-sans-serif, system-ui, sans-serif;
  font-variant-numeric: tabular-nums;
  letter-spacing: -.035em;
}

.reporting-metric small {
  margin-top: -3px;
  color: var(--reporting-faint);
  font-size: 10px;
}

.reporting-chart-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
  gap: 13px;
  margin-bottom: 14px;
}

.reporting-portfolio-overview {
  align-items: stretch;
}

.reporting-revenue-monthly-grid {
  align-items: stretch;
}

.reporting-recovery-debt-grid {
  align-items: stretch;
}

.reporting-synthesis-chart-grid {
  align-items: stretch;
}

.reporting-synthesis-chart-grid > .reporting-panel {
  display: flex;
  flex-direction: column;
}

.reporting-synthesis-chart-grid > .reporting-panel > .reporting-panel-body {
  flex: 1 1 auto;
}

.reporting-chart-grid.reporting-consumption-chart-grid {
  grid-template-columns: minmax(0, 1fr);
}

.reporting-synthesis-panel-heading {
  flex-wrap: wrap;
}

.reporting-panel-title {
  min-width: 0;
}

.reporting-synthesis-period {
  display: grid;
  flex: 0 0 auto;
  gap: 3px;
  color: var(--reporting-faint);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .055em;
  text-transform: uppercase;
}

.reporting-synthesis-period select {
  min-width: 126px;
  min-height: 31px;
  padding: 4px 24px 4px 8px;
  color: var(--reporting-text);
  background: var(--reporting-surface);
  border: 1px solid var(--reporting-border);
  border-radius: 6px;
  font-size: 11px;
  font-weight: 550;
  letter-spacing: normal;
  text-transform: none;
}

.reporting-volume-city-donut {
  width: 100%;
  align-items: stretch;
}

.reporting-volume-city-legend {
  display: grid;
  max-height: 190px;
  align-content: center;
  gap: 7px;
  overflow-y: auto;
  padding: 0 2px 0 0;
  list-style: none;
}

.reporting-volume-city-legend li {
  display: grid;
  min-width: 0;
  grid-template-columns: 9px minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 6px;
  color: var(--reporting-muted);
}

.reporting-volume-city-name {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.reporting-volume-city-share {
  color: var(--reporting-faint);
  font-size: 9px;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.reporting-volume-city-legend strong {
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.reporting-donut-note {
  margin: 8px 0 0;
  color: var(--reporting-faint);
  font-size: 9px;
}

.reporting-panel {
  min-width: 0;
  margin-bottom: 14px;
  background: var(--reporting-surface);
  border: 1px solid var(--reporting-border);
  border-radius: 10px;
  box-shadow: var(--card-shadow, 0 2px 16px rgb(20 46 84 / 3%));
}

.reporting-chart-grid > .reporting-panel {
  margin-bottom: 0;
}

.reporting-panel > header {
  display: flex;
  min-height: 54px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 11px 15px;
  border-bottom: 1px solid var(--reporting-border);
}

.reporting-panel > header h2 {
  font-size: 13px;
}

.reporting-panel > header p {
  margin: 3px 0 0;
  color: var(--reporting-muted);
  font-size: 10px;
}

.reporting-panel-body {
  padding: 10px 13px 13px;
}

.reporting-chart svg {
  width: 100%;
  height: auto;
  overflow: visible;
}

.reporting-gridline {
  stroke: var(--reporting-border);
  stroke-width: 1;
}

.reporting-axis-label {
  fill: var(--reporting-faint);
  font: 10px ui-sans-serif, system-ui, sans-serif;
}

.reporting-extrema-label {
  fill: var(--reporting-text);
  font: 650 10px ui-sans-serif, system-ui, sans-serif;
  paint-order: stroke;
  stroke: var(--reporting-surface);
  stroke-linejoin: round;
  stroke-width: 3px;
}

.reporting-area {
  fill: var(--chart-color, var(--reporting-accent));
  fill-opacity: 0.24;
}

.reporting-line {
  fill: none;
  stroke: var(--chart-color, var(--reporting-accent));
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.5;
}

.reporting-chart-point {
  fill: var(--reporting-surface);
  stroke: var(--chart-color, var(--reporting-accent));
  stroke-width: 2;
}

.reporting-heat-point {
  fill: var(--chart-color);
  stroke: var(--reporting-surface);
  stroke-width: 2.5;
}

.reporting-bar {
  fill: var(--chart-color, var(--reporting-accent));
}

.reporting-chart-legend {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-top: 2px;
  color: var(--reporting-muted);
  font-size: 10px;
}

.reporting-chart-legend span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.reporting-legend-bar {
  width: 10px;
  height: 10px;
  background: #2867c9;
  border-radius: 2px;
}

.reporting-legend-line {
  width: 17px;
  height: 2px;
  background: #44986D;
}

.reporting-chart-empty {
  display: grid;
  min-height: 130px;
  place-items: center;
  color: var(--reporting-faint);
  font-size: 11px;
  text-align: center;
}

.reporting-donut {
  display: flex;
  min-height: 190px;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.reporting-donut-chart {
  width: 180px;
  flex: 0 0 180px;
}

.reporting-donut-chart svg {
  display: block;
  width: 100%;
  height: auto;
  overflow: visible;
}

.reporting-donut-track,
.reporting-donut-segment {
  fill: none;
  stroke-width: 22;
}

.reporting-donut-track {
  stroke: var(--surface-muted, #edf3fb);
}

.reporting-donut-total {
  fill: var(--reporting-text);
  font: 650 21px ui-sans-serif, system-ui, sans-serif;
  font-variant-numeric: tabular-nums;
}

.reporting-donut-caption {
  fill: var(--reporting-faint);
  font: 10px ui-sans-serif, system-ui, sans-serif;
}

.reporting-donut-legend {
  width: 100%;
  min-width: 0;
  flex: 1 1 130px;
  max-width: 260px;
  margin: 0;
  border-collapse: separate;
  border-spacing: 0 8px;
  table-layout: fixed;
  font-size: 10px;
}

.reporting-donut-legend th {
  padding: 0;
  color: var(--reporting-muted);
  font-weight: 450;
  text-align: left;
}

.reporting-donut-swatch {
  display: inline-block;
  width: 9px;
  height: 9px;
  margin-right: 7px;
  background: var(--donut-color);
  border-radius: 50%;
  vertical-align: middle;
}

.reporting-donut-diameter {
  display: inline-block;
  max-width: calc(100% - 20px);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  vertical-align: middle;
}

.reporting-donut-legend td {
  padding: 0;
  vertical-align: middle;
}

.reporting-donut-photo-cell {
  width: 54px;
  text-align: center;
}

.reporting-donut-meter-photo {
  display: block;
  width: 42px;
  height: 58px;
  margin: 0 auto;
  object-fit: contain;
}

.reporting-donut-count {
  width: 34px;
  text-align: right;
}

.reporting-donut-legend strong {
  color: var(--reporting-text);
  font-variant-numeric: tabular-nums;
  font-weight: 600;
}

.reporting-donut-share {
  display: block;
  margin-top: 2px;
  color: var(--reporting-faint);
  font-size: 9px;
  font-weight: 450;
}

.reporting-donut-share.reporting-donut-diameter-share {
  display: inline-block;
  width: 48px;
  margin: 0 8px 0 0;
  font-style: italic;
  text-align: right;
  vertical-align: middle;
  white-space: nowrap;
}

.reporting-meter-age-total {
  min-height: auto;
  margin-bottom: 12px;
  padding: 12px;
  background: var(--reporting-soft);
  border-radius: 8px;
  box-shadow: none;
}

.reporting-meter-status-heading {
  display: flex;
  align-items: center;
  gap: 8px;
}

.reporting-meter-status-heading h2 {
  margin: 0;
}

.reporting-renewal-info-wrap {
  position: relative;
  display: inline-flex;
  flex: 0 0 auto;
}

.reporting-renewal-info-trigger {
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  padding: 0;
  color: #fff;
  background: #17324d;
  border: 1px solid #c6a15b;
  border-radius: 50%;
  cursor: help;
  font: 700 13px/1 ui-sans-serif, system-ui, sans-serif;
  box-shadow: 0 2px 6px rgb(20 46 84 / 20%);
  transition: background-color 120ms ease, box-shadow 120ms ease;
}

.reporting-renewal-info-trigger:hover {
  background: var(--reporting-accent);
  box-shadow: 0 3px 8px rgb(20 46 84 / 26%);
}

.reporting-renewal-info-trigger:focus-visible {
  outline: 2px solid #c6a15b;
  outline-offset: 2px;
}

.reporting-renewal-info-tooltip {
  position: absolute;
  top: calc(100% + 7px);
  left: 0;
  z-index: 20;
  width: max-content;
  max-width: min(320px, calc(100vw - 32px));
  padding: 10px 12px;
  color: #fff;
  background: #17324d;
  border: 1px solid #c6a15b;
  border-radius: 7px;
  box-shadow: 0 8px 24px rgb(20 46 84 / 30%);
  font-size: 12px;
  font-weight: 450;
  line-height: 1.45;
  white-space: normal;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity 120ms ease;
}

.reporting-renewal-info-tooltip::before {
  position: absolute;
  top: -5px;
  left: 7px;
  width: 8px;
  height: 8px;
  content: "";
  background: #17324d;
  border-top: 1px solid #c6a15b;
  border-left: 1px solid #c6a15b;
  transform: rotate(45deg);
}

.reporting-renewal-info-wrap:hover .reporting-renewal-info-tooltip,
.reporting-renewal-info-trigger:focus + .reporting-renewal-info-tooltip {
  visibility: visible;
  opacity: 1;
}

.reporting-meter-age-total strong {
  font-size: 25px;
}

.reporting-meter-statuses {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.reporting-meter-statuses li {
  display: inline-flex;
  height: 34px;
  min-height: 34px;
  align-items: center;
  gap: 11px;
  box-sizing: border-box;
  padding: 0 10px;
  color: var(--reporting-muted);
  background: var(--reporting-soft);
  border: 1px solid var(--reporting-border);
  border-radius: 999px;
  font-size: 10px;
  line-height: 1;
  white-space: nowrap;
}

.reporting-meter-statuses strong {
  color: var(--reporting-text);
  font-variant-numeric: tabular-nums;
  font-weight: 650;
}

.reporting-meter-note {
  margin: 10px 0 0;
  color: var(--reporting-faint);
  font-size: 10px;
}

.reporting-breakdown {
  overflow: hidden;
}

.reporting-breakdown-toggle {
  display: grid;
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
  place-items: center;
  padding: 0;
  color: var(--reporting-muted);
  border: 1px solid var(--reporting-border);
  border-radius: 6px;
  background: transparent;
  cursor: pointer;
}

.reporting-breakdown-toggle:hover {
  color: var(--reporting-accent);
  background: var(--reporting-soft);
}

.reporting-breakdown-toggle:focus-visible {
  outline: 2px solid var(--reporting-accent);
  outline-offset: 2px;
}

.reporting-breakdown-toggle svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 160ms ease;
}

.reporting-breakdown-toggle[aria-expanded="true"] svg {
  transform: rotate(180deg);
}

.reporting-breakdown-content[hidden] {
  display: none;
}

.reporting-panel-heading {
  flex-wrap: wrap;
}

.reporting-pivot-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.reporting-pivot-controls .reporting-filter {
  min-width: 155px;
}

.reporting-table-wrap {
  width: 100%;
  overflow-x: auto;
}

.reporting-table-wrap table {
  width: 100%;
  min-width: 650px;
  border-collapse: collapse;
  text-align: left;
}

.reporting-table-wrap table.reporting-fiscal-table {
  min-width: 500px;
}

.reporting-diameter-typology-groups {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 12px;
}

.reporting-diameter-typology-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--reporting-border);
  border-radius: 11px;
  background: var(--reporting-surface);
}

.reporting-diameter-typology-card h3 {
  margin: 0;
  padding: 11px 13px;
  border-bottom: 1px solid var(--reporting-border);
  background: var(--reporting-soft);
  color: var(--reporting-text);
  font-size: 12px;
  font-weight: 700;
}

.reporting-diameter-typology-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.reporting-diameter-typology-item {
  display: grid;
  grid-template-columns: minmax(76px, 0.9fr) minmax(0, 2fr);
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
}

.reporting-diameter-typology-item + .reporting-diameter-typology-item {
  border-top: 1px solid var(--reporting-border);
}

.reporting-diameter-typology-diameter {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 5px;
}

.reporting-diameter-typology-diameter strong {
  color: var(--reporting-muted);
  font-size: 10px;
  white-space: nowrap;
}

.reporting-diameter-typology-metrics {
  display: grid;
  min-width: 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 4px;
  margin: 0;
  text-align: right;
}

.reporting-diameter-typology-metrics > div {
  min-width: 0;
}

.reporting-diameter-typology-metrics dt {
  color: var(--reporting-faint);
  font-size: 9px;
  line-height: 1.25;
}

.reporting-diameter-typology-metrics dd {
  margin: 3px 0 0;
  color: var(--reporting-text);
  font-size: 10px;
  font-variant-numeric: tabular-nums;
  font-weight: 700;
  white-space: nowrap;
}

.reporting-diameter-typology-empty {
  grid-column: 1 / -1;
  margin: 0;
  padding: 26px;
  border: 1px dashed var(--reporting-border);
  border-radius: 11px;
  color: var(--reporting-faint);
  text-align: center;
}

.reporting-diameter-meter-thumbnail {
  display: block;
  width: 28px;
  height: 36px;
  margin: 0 auto;
  object-fit: contain;
}

.reporting-fiscal-table th:nth-child(2),
.reporting-fiscal-table td:nth-child(2),
.reporting-fiscal-table th:last-child,
.reporting-fiscal-table td:last-child {
  text-align: right;
}

.reporting-table-wrap th {
  padding: 10px 13px;
  color: var(--reporting-faint);
  background: var(--reporting-soft);
  border-bottom: 1px solid var(--reporting-border);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .065em;
  text-transform: uppercase;
  white-space: nowrap;
}

.reporting-table-wrap th button {
  padding: 0;
  color: inherit;
  border: 0;
  background: transparent;
  cursor: pointer;
  font: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
}

.reporting-table-wrap th button:hover {
  color: var(--accent-strong, var(--reporting-accent));
}

.reporting-table-wrap td {
  max-width: 300px;
  padding: 10px 13px;
  overflow: hidden;
  color: var(--reporting-muted);
  border-bottom: 1px solid var(--reporting-border);
  font-size: 11px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.reporting-table-wrap tbody tr:last-child td {
  border-bottom: 0;
}

.reporting-table-wrap tbody tr:hover {
  background: var(--reporting-soft);
}

.reporting-table-wrap tbody tr[data-reporting-category-filter] {
  cursor: pointer;
}

.reporting-table-wrap tbody tr[data-category-selected="true"] {
  background: var(--reporting-soft);
}

.reporting-table-wrap td:first-child {
  color: var(--reporting-text);
  font-weight: 600;
}

.reporting-table-wrap td:first-child button {
  display: inline-block;
  max-width: 100%;
  padding: 0;
  overflow: hidden;
  color: inherit;
  border: 0;
  background: transparent;
  cursor: pointer;
  font: inherit;
  text-align: left;
  text-overflow: ellipsis;
  white-space: inherit;
}

.reporting-table-wrap td:first-child button:hover {
  color: var(--accent-strong, var(--reporting-accent));
  text-decoration: underline;
}

.reporting-table-wrap td:first-child button[aria-pressed="true"] {
  color: var(--accent-strong, var(--reporting-accent));
}

.reporting-table-wrap td.reporting-number {
  font-variant-numeric: tabular-nums;
}

.reporting-trend {
  display: inline-block;
  margin-left: 5px;
  font-size: 1.05em;
  font-weight: 800;
  line-height: 1;
  vertical-align: baseline;
}

.reporting-trend--up {
  color: #18774a;
}

.reporting-trend--down {
  color: #b73c3c;
}

.reporting-trend--flat {
  color: var(--reporting-faint);
}

.reporting-breakdown--synthesis {
  border-color: color-mix(in srgb, var(--reporting-accent) 20%, var(--reporting-border));
  border-radius: 14px;
  box-shadow: 0 12px 30px rgb(10 35 53 / 9%);
}

.reporting-breakdown--synthesis .reporting-panel-heading {
  padding: 13px 16px;
  background: linear-gradient(180deg, var(--reporting-surface), var(--reporting-soft));
}

.reporting-breakdown--synthesis .reporting-panel-heading h2 {
  color: var(--reporting-text);
  font-size: 14px;
  font-weight: 750;
  letter-spacing: -.015em;
}

.reporting-breakdown--synthesis .reporting-table-wrap table {
  border-collapse: separate;
  border-spacing: 0;
}

.reporting-breakdown--synthesis .reporting-table-wrap th {
  padding: 12px 15px;
  color: #e8f1f6;
  background: linear-gradient(180deg, #153b54, #1b5260);
  border-bottom: 2px solid #c7aa6c;
  font-size: 10px;
  letter-spacing: .075em;
}

.reporting-breakdown--synthesis .reporting-table-wrap th:first-child {
  border-top-left-radius: 7px;
}

.reporting-breakdown--synthesis .reporting-table-wrap th:last-child {
  border-top-right-radius: 7px;
}

.reporting-breakdown--synthesis .reporting-table-wrap th button {
  text-align: inherit;
}

.reporting-breakdown--synthesis .reporting-table-wrap th.is-sorted button {
  color: #f1dba7;
}

.reporting-breakdown--synthesis .reporting-table-wrap th button:hover {
  color: #fff;
}

.reporting-breakdown--synthesis .reporting-table-wrap th:not(:first-child),
.reporting-breakdown--synthesis .reporting-table-wrap td.reporting-number {
  text-align: right;
}

.reporting-breakdown--synthesis .reporting-table-wrap td {
  padding: 12px 15px;
  color: var(--reporting-muted);
  border-bottom-color: color-mix(in srgb, var(--reporting-border) 76%, transparent);
  font-size: 11px;
}

.reporting-breakdown--synthesis .reporting-table-wrap td:first-child {
  color: var(--reporting-text);
  font-weight: 700;
}

.reporting-breakdown--synthesis .reporting-table-wrap td.reporting-number {
  color: var(--reporting-text);
  font-weight: 600;
}

.reporting-breakdown--synthesis .reporting-table-wrap tbody tr:nth-child(even) td {
  background: color-mix(in srgb, var(--reporting-soft) 58%, var(--reporting-surface));
}

.reporting-breakdown--synthesis .reporting-table-wrap tbody tr:hover td {
  background: color-mix(in srgb, var(--reporting-accent) 9%, var(--reporting-surface));
}

.reporting-breakdown--synthesis .reporting-trend {
  display: inline-grid;
  width: 19px;
  height: 19px;
  place-items: center;
  margin-left: 7px;
  border-radius: 50%;
  font-size: 11px;
  vertical-align: middle;
  background: color-mix(in srgb, currentColor 13%, var(--reporting-surface));
}

.reporting-breakdown--synthesis .reporting-trend--up {
  color: var(--positive, #18774a);
}

.reporting-breakdown--synthesis .reporting-trend--down {
  color: var(--negative, #b73c3c);
}

.reporting-empty-cell {
  padding: 26px !important;
  text-align: center;
}

.reporting-table-note {
  margin: 0;
  padding: 8px 13px 10px;
  color: var(--reporting-faint);
  border-top: 1px solid var(--reporting-border);
  font-size: 10px;
}

.reporting-bars {
  display: grid;
  gap: 13px;
  margin: 0;
  padding: 4px 1px;
  list-style: none;
}

.reporting-bar-label {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 5px;
  color: var(--reporting-muted);
  font-size: 10px;
}

.reporting-bar-label span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.reporting-bar-label strong {
  flex: 0 0 auto;
  color: var(--reporting-text);
  font-variant-numeric: tabular-nums;
  font-weight: 600;
}

.reporting-bar-track {
  height: 6px;
  overflow: hidden;
  background: var(--surface-muted, #edf3fb);
  border-radius: 10px;
}

.reporting-bar-track span {
  display: block;
  height: 100%;
  background: var(--reporting-accent);
  border-radius: inherit;
}

.reporting-assistant {
  margin-bottom: 15px;
}
.reporting-answer-list { margin: 8px 0 0; padding-left: 24px; }
.reporting-answer-list li { padding: 7px 0; }
.reporting-answer-list li strong { float: right; padding-left: 12px; }
.reporting-answer-contract { display: block; font-size: .85em; font-weight: 400; margin-top: 2px; }
.reporting-answer-contract-item { display: inline-flex; align-items: center; gap: 2px; }
.reporting-answer-copy {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-left: 1px;
  padding: 2px 4px;
  color: var(--reporting-muted);
  background: transparent;
  border: 0;
  border-radius: 4px;
  cursor: pointer;
  font: inherit;
  line-height: 1.2;
  vertical-align: middle;
}
.reporting-answer-copy:hover { color: var(--accent-strong); background: var(--accent-soft); }
.reporting-answer-copy:focus-visible { outline: 2px solid var(--accent-strong); outline-offset: 2px; }
.reporting-answer-copy svg { width: 14px; height: 14px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.reporting-answer-copy-feedback:empty { display: none; }
.reporting-answer-copy[data-reporting-copy-state="copied"] { color: #23764f; background: #e8f4ec; }
.reporting-answer-copy[data-reporting-copy-state="error"] { color: var(--negative, #a73343); background: var(--negative-soft, #f9e9ec); }
.reporting-help-toggle, .reporting-reset {
  padding: 6px 9px;
  color: var(--accent-strong);
  border: 0;
  border-radius: 6px;
  background: transparent;
  cursor: pointer;
  font-size: 12px;
}
.reporting-help-toggle:hover, .reporting-reset:hover { background: var(--accent-soft); }
.reporting-help { margin-top: 12px; color: var(--reporting-muted); font-size: 12px; }
.reporting-help button {
  margin: 0 7px 7px 0;
  padding: 6px 9px;
  color: var(--reporting-text);
  background: var(--reporting-surface);
  border: 1px solid var(--reporting-border);
  border-radius: 6px;
  cursor: pointer;
}
.reporting-help button:hover { border-color: var(--reporting-accent); }
.reporting-local-note { margin: 14px 0 0; color: var(--reporting-faint); font-size: 11px; }

.reporting-readonly {
  padding: 4px 8px;
  color: var(--reporting-muted);
  background: var(--reporting-soft);
  border: 1px solid var(--reporting-border);
  border-radius: 999px;
  font-size: 9px;
  font-weight: 650;
  white-space: nowrap;
}

.reporting-assistant form {
  display: flex;
  gap: 8px;
  margin: 1px 0 12px;
}

.reporting-assistant form input {
  width: 100%;
  min-width: 0;
  min-height: 38px;
  padding: 8px 11px;
  color: var(--reporting-text);
  background: var(--reporting-surface);
  border: 1px solid var(--reporting-border);
  border-radius: 7px;
  font-size: 12px;
}

.reporting-assistant form input::placeholder {
  color: var(--reporting-faint);
}

.reporting-assistant form button {
  flex: 0 0 auto;
  padding: 7px 13px;
  color: #fff;
  background: var(--accent-strong, var(--reporting-accent));
  border: 1px solid var(--accent-strong, var(--reporting-accent));
  border-radius: 7px;
  cursor: pointer;
  font-size: 11px;
  font-weight: 650;
}

.reporting-assistant form button:hover {
  filter: brightness(.95);
}

.reporting-assistant form button[data-reporting-query-clear] {
  color: var(--accent-strong, var(--reporting-accent));
  background: var(--reporting-surface);
  border-color: var(--reporting-border);
}

.reporting-assistant form button[data-reporting-query-clear]:hover {
  background: var(--accent-soft);
  filter: none;
}

.reporting-assistant-message {
  padding: 10px 12px;
  color: var(--reporting-muted);
  background: var(--reporting-soft);
  border-radius: 7px;
  font-size: 11px;
}

.reporting-assistant-message.is-empty {
  color: var(--reporting-faint);
}

.reporting-assistant-message.is-error {
  color: var(--negative, #a73343);
  background: var(--negative-soft, #f9e9ec);
}

.reporting-answer-description {
  margin: 0 0 9px;
  color: var(--reporting-muted);
  font-size: 12px;
}

.reporting-query-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 11px;
}

.reporting-query-chip {
  display: inline-flex;
  gap: 5px;
  padding: 4px 8px;
  color: var(--reporting-muted);
  background: var(--reporting-soft);
  border: 1px solid var(--reporting-border);
  border-radius: 999px;
  font-size: 10px;
  overflow-wrap: anywhere;
}

.reporting-query-chip b {
  color: var(--reporting-text);
  font-weight: 650;
}

.reporting-answer-result {
  padding: 12px;
  background: var(--reporting-soft);
  border: 1px solid var(--reporting-border);
  border-radius: 7px;
}

.reporting-answer-result h3 {
  margin-bottom: 8px;
  font-size: 11px;
}

.reporting-answer-result dl {
  display: grid;
  gap: 5px;
  margin: 0;
}

.reporting-answer-result dl > div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 5px;
  border-bottom: 1px solid var(--reporting-border);
}

.reporting-answer-result dl > div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.reporting-answer-result dt {
  color: var(--reporting-muted);
  font-size: 10px;
}

.reporting-answer-result dd {
  margin: 0;
  overflow-wrap: anywhere;
  font-size: 11px;
  font-weight: 600;
  text-align: right;
}

.reporting-answer-value {
  margin: 0;
  font-size: 17px;
  font-weight: 650;
  font-variant-numeric: tabular-nums;
}

.reporting-empty {
  display: grid;
  min-height: 170px;
  place-content: center;
  gap: 7px;
  padding: 20px;
  color: var(--reporting-muted);
  background: var(--reporting-surface);
  border: 1px solid var(--reporting-border);
  border-radius: 10px;
  text-align: center;
  font-size: 12px;
}

.reporting-empty strong {
  color: var(--reporting-text);
  font-size: 14px;
}

.reporting-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 900px) {
  .reporting-filter-panel {
    align-items: stretch;
  }

  .reporting-filter {
    flex: 1 1 145px;
  }

  .reporting-scope {
    flex: 1 1 100%;
    margin: 3px 0 0;
    padding: 8px 0 0;
    border-top: 1px solid var(--reporting-border);
    border-left: 0;
  }

  .reporting-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .reporting-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 11px;
  }

  .reporting-filter-panel {
    gap: 9px;
    padding: 11px;
  }

  .reporting-filter {
    min-width: calc(50% - 6px);
  }

  .reporting-source-select {
    min-width: 100%;
  }

  .reporting-chart-grid {
    grid-template-columns: 1fr;
  }

  .reporting-donut {
    flex-direction: column;
  }

  .reporting-donut-legend {
    width: 100%;
    max-width: none;
  }

  .reporting-volume-city-legend {
    max-height: 180px;
  }

  .reporting-panel-heading {
    align-items: flex-start !important;
    flex-direction: column;
  }

  .reporting-pivot-controls {
    width: 100%;
  }

  .reporting-pivot-controls .reporting-filter {
    min-width: calc(50% - 5px);
  }
}

@media (max-width: 400px) {
  .reporting-metrics {
    grid-template-columns: 1fr;
  }

  .reporting-assistant form {
    align-items: stretch;
    flex-direction: column;
  }

  .reporting-assistant form button {
    min-height: 37px;
  }
}