:root {
  --bg: #f4f7f8;
  --panel: #ffffff;
  --sidebar: #113b45;
  --sidebar2: #0d3038;
  --text: #18353b;
  --muted: #72868c;
  --line: #dce5e7;
  --accent: #13798b;

  --ok: #17804f;
  --ok-bg: #e5f4ec;

  --warn: #9f6b10;
  --warn-bg: #fff3d7;

  --bad: #a43a3a;
  --bad-bg: #f9e6e6;

  --idle: #60767c;
  --idle-bg: #edf2f3;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);

  font-family:
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Arial,
    sans-serif;
}

button,
select {
  font: inherit;
}

.shell {
  min-height: 100vh;

  display: grid;
  grid-template-columns: 220px minmax(0,1fr);
}

.sidebar {
  min-height: 100vh;
  padding: 25px 18px;

  display: flex;
  flex-direction: column;

  color: #fff;

  background:
    linear-gradient(
      180deg,
      var(--sidebar),
      var(--sidebar2)
    );
}

.brand-main {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: .08em;
}

.brand-sub {
  margin-top: 5px;

  color: #9abdc4;

  font-size: 10px;
  letter-spacing: .12em;
}

.nav {
  margin-top: 38px;
}

.nav-link {
  display: block;

  margin-bottom: 5px;
  padding: 10px 12px;

  border-radius: 8px;

  color: #c7dade;

  text-decoration: none;
}

.nav-link:hover,
.nav-link.active {
  color: #fff;
  background: rgba(255,255,255,.10);
}

.sidebar-bottom {
  margin-top: auto;

  color: #759da5;

  font-size: 10px;
  line-height: 1.6;
}

.main {
  min-width: 0;
  padding: 26px 30px;
}

.topbar {
  display: flex;

  align-items: flex-start;
  justify-content: space-between;

  gap: 20px;
}

.selector-row {
  display: flex;

  align-items: center;

  gap: 10px;
}

.station-selector {
  max-width: 480px;

  padding: 8px 10px;

  border: 1px solid var(--line);
  border-radius: 8px;

  background: #fff;
  color: var(--text);
}

h1 {
  margin: 9px 0 4px;

  font-size: 27px;
}

.subtitle,
.hint {
  color: var(--muted);

  font-size: 12px;
}

.user-panel {
  display: flex;

  align-items: center;

  gap: 15px;
}

.user-name {
  font-size: 13px;
  font-weight: 700;
}

.user-role {
  margin-top: 2px;

  color: var(--muted);

  font-size: 10px;
}

.state {
  display: inline-flex;

  align-items: center;

  min-height: 26px;
  padding: 4px 10px;

  border-radius: 14px;

  font-size: 10px;
  font-weight: 800;
}

.state-online {
  color: var(--ok);
  background: var(--ok-bg);
}

.state-stale {
  color: var(--warn);
  background: var(--warn-bg);
}

.state-offline {
  color: var(--bad);
  background: var(--bad-bg);
}

.state-unknown {
  color: var(--idle);
  background: var(--idle-bg);
}

.button,
.period,
.tab {
  padding: 8px 11px;

  border: 1px solid var(--line);
  border-radius: 8px;

  background: #fff;
  color: var(--text);

  cursor: pointer;

  font-size: 12px;
}

.button:hover,
.period:hover,
.tab:hover {
  border-color: #aebfc3;
}

.button.secondary {
  background: transparent;
}

.controlbar {
  margin-top: 23px;
  padding: 12px 13px;

  display: flex;

  align-items: center;

  gap: 12px;

  border: 1px solid var(--line);
  border-radius: 11px;

  background: #fff;
}

.period-label {
  font-size: 12px;
  font-weight: 700;
}

.periods {
  display: flex;
  gap: 5px;
}

.period.active,
.tab.active {
  border-color: var(--accent);

  background: var(--accent);
  color: #fff;
}

.last-update {
  margin-left: auto;

  color: var(--muted);

  font-size: 10px;
}

.tabs {
  margin: 18px 0;

  display: flex;

  gap: 6px;
  flex-wrap: nowrap;
  overflow-x: auto;
  scrollbar-width: thin;
}

.tab-panel {
  display: none;
}

.tab-panel.active {
  display: block;
}

.wash-periods {
  display: flex;
  gap: 6px;
  margin-top: 16px;
  overflow-x: auto;
  padding-bottom: 2px;
}

.wash-source-note,
.wash-confirmation-note,
.wash-water-note {
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: 10px;
  background: #eaf7f8;
  color: #145d67;
  font-size: 12px;
  line-height: 1.45;
}

.wash-confirmation-note {
  border-left: 4px solid #1b9aaa;
}

.wash-water-note {
  background: #f3f5f7;
  color: var(--muted);
}

.wash-chart-wrap {
  margin-top: 18px;
}

.wash-chart-wrap h3 {
  margin: 0 0 12px;
  font-size: 15px;
}

.wash-chart {
  display: grid;
  gap: 9px;
  min-height: 36px;
}

.wash-bar-row {
  display: grid;
  grid-template-columns: 125px minmax(80px, 1fr) 52px;
  align-items: center;
  gap: 10px;
  font-size: 11px;
}

.wash-bar-label,
.wash-bar-value {
  color: var(--muted);
  white-space: nowrap;
}

.wash-bar-track {
  height: 18px;
  border-radius: 5px;
  background: #edf2f4;
  overflow: hidden;
}

.wash-bar {
  display: block;
  height: 100%;
  min-width: 3px;
  border-radius: 5px;
  background: #1b9aaa;
}

.wash-bar-incomplete {
  background: repeating-linear-gradient(135deg, #8c83a7 0 6px, #c4bfd1 6px 12px);
}

.wash-table-scroll {
  margin-top: 18px;
  overflow-x: auto;
}

.wash-cycles-table {
  min-width: 720px;
}

@media (max-width: 640px) {
  .wash-bar-row {
    grid-template-columns: 100px minmax(100px, 1fr) 44px;
    gap: 7px;
  }
}

.panel {
  margin-top: 15px;
  padding: 18px;

  border: 1px solid var(--line);
  border-radius: 12px;

  background: var(--panel);
}

.panel h2 {
  margin: 0 0 15px;

  font-size: 17px;
}

.panel-head {
  display: flex;

  align-items: center;
  justify-content: space-between;

  gap: 15px;
}

.count {
  min-width: 30px;
  padding: 4px 8px;

  border-radius: 13px;

  background: #edf2f3;

  text-align: center;

  font-size: 11px;
  font-weight: 700;
}

.grid-two {
  display: grid;

  grid-template-columns:
    repeat(2,minmax(0,1fr));

  gap: 15px;
}

.kpi-grid {
  display: grid;

  grid-template-columns:
    repeat(4,minmax(0,1fr));

  gap: 12px;
}

.kpi {
  min-height: 108px;
  padding: 15px;

  border: 1px solid var(--line);
  border-radius: 11px;

  background: #fff;
}

.kpi-label {
  color: var(--muted);

  font-size: 11px;
}

.kpi-value {
  margin-top: 7px;

  font-size: 24px;
  font-weight: 760;
}

.kpi-unit {
  margin-left: 3px;

  color: var(--muted);

  font-size: 12px;
  font-weight: 500;
}

.kpi-detail {
  margin-top: 8px;

  color: var(--muted);

  font-size: 10px;
}

.process-chain {
  display: grid;

  grid-template-columns:
    repeat(7,minmax(110px,1fr));

  gap: 9px;

  overflow-x: auto;
}

.process-node {
  position: relative;

  min-width: 120px;
  min-height: 128px;

  padding: 13px;

  border: 1px solid var(--line);
  border-radius: 10px;

  background: #fafcfc;
}

.process-node:not(:last-child)::after {
  content: "→";

  position: absolute;

  top: 50%;
  right: -11px;

  z-index: 2;

  color: #89a0a5;

  font-weight: 800;
}

.process-name {
  font-size: 12px;
  font-weight: 750;
}

.process-status {
  display: inline-block;

  margin-top: 9px;
  padding: 4px 7px;

  border-radius: 10px;

  font-size: 9px;
  font-weight: 800;
}

.status-ok {
  color: var(--ok);
  background: var(--ok-bg);
}

.status-active {
  color: #116f82;
  background: #e5f2f5;
}

.status-idle {
  color: var(--idle);
  background: var(--idle-bg);
}

.status-warn {
  color: var(--warn);
  background: var(--warn-bg);
}

.status-bad {
  color: var(--bad);
  background: var(--bad-bg);
}

.process-values {
  margin-top: 10px;

  color: var(--muted);

  font-size: 10px;
  line-height: 1.6;
}

.status-list {
  display: grid;
  gap: 8px;
}

.status-row {
  display: flex;

  align-items: center;
  justify-content: space-between;

  gap: 15px;

  padding-bottom: 8px;

  border-bottom: 1px solid var(--line);
}

.status-row:last-child {
  border-bottom: 0;
}

.status-label {
  color: var(--muted);

  font-size: 12px;
}

.status-value {
  text-align: right;

  font-size: 12px;
  font-weight: 700;
}

.dot {
  display: inline-block;

  width: 8px;
  height: 8px;

  margin-right: 6px;

  border-radius: 50%;

  background: #a5b5b8;
}

.dot.ok {
  background: var(--ok);
}

.dot.bad {
  background: var(--bad);
}

.dot.warn {
  background: var(--warn);
}

.dot.active {
  background: var(--accent);
}

.table {
  width: 100%;

  border-collapse: collapse;
}

.table th,
.table td {
  padding: 9px 8px;

  border-bottom: 1px solid var(--line);

  text-align: left;
  vertical-align: top;
}

.table th {
  color: var(--muted);

  font-size: 10px;
  font-weight: 650;
}

.table td {
  font-size: 12px;
}

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

.finding {
  padding: 11px 0;

  border-bottom: 1px solid var(--line);
}

.finding:last-child {
  border-bottom: 0;
}

.finding-head {
  display: flex;

  align-items: center;

  gap: 8px;
}

.finding-level {
  padding: 3px 7px;

  border-radius: 10px;

  background: var(--idle-bg);

  font-size: 9px;
  font-weight: 800;
}

.finding-level.info {
  color: var(--accent);
  background: #e5f2f5;
}

.finding-level.notice {
  color: var(--warn);
  background: var(--warn-bg);
}

.finding-level.warning,
.finding-level.error,
.finding-level.critical {
  color: var(--bad);
  background: var(--bad-bg);
}

.finding-title {
  font-size: 12px;
  font-weight: 700;
}

.finding-text {
  margin-top: 5px;

  color: var(--muted);

  font-size: 11px;
  line-height: 1.5;
}

.method {
  color: var(--muted);

  font-size: 11px;
  line-height: 1.55;
}

.chart {
  display: block;

  width: 100%;
  height: 270px;
}

.profile-grid {
  display: grid;

  grid-template-columns:
    repeat(2,minmax(0,1fr));

  gap: 10px 30px;
}

.profile-item {
  padding: 8px 0;

  border-bottom: 1px solid var(--line);
}

.profile-label {
  color: var(--muted);

  font-size: 10px;
}

.profile-value {
  margin-top: 4px;

  font-size: 12px;
  font-weight: 650;
}

.empty {
  padding: 15px 0;

  color: var(--muted);

  font-size: 12px;
}

footer {
  padding: 24px 0 5px;

  color: var(--muted);

  font-size: 9px;
}


@media (max-width: 1150px) {

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

  .process-chain {
    grid-template-columns:
      repeat(4,minmax(130px,1fr));
  }
}


@media (max-width: 780px) {

  .shell {
    display: block;
  }

  .sidebar {
    min-height: auto;
    padding: 15px;
  }

  .nav {
    margin-top: 14px;

    display: flex;

    overflow-x: auto;
  }

  .nav-link {
    white-space: nowrap;
  }

  .sidebar-bottom {
    display: none;
  }

  .main {
    padding: 17px 13px;
  }

  .topbar {
    flex-direction: column;
  }

  .user-panel {
    width: 100%;

    justify-content: space-between;
  }

  .controlbar {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .last-update {
    width: 100%;
    margin-left: 0;
  }

  .grid-two,
  .profile-grid {
    grid-template-columns: 1fr;
  }

  .process-chain {
    grid-template-columns:
      repeat(2,minmax(140px,1fr));
  }
}


@media (max-width: 500px) {

  .kpi-grid,
  .process-chain {
    grid-template-columns: 1fr;
  }

  .process-node:not(:last-child)::after {
    display: none;
  }

  .periods {
    width: 100%;

    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .period {
    width: 100%;
  }

  .station-selector {
    width: 100%;
  }

  .selector-row {
    align-items: stretch;
    flex-direction: column;
  }
}


/* =========================================================
   WATERMAN DAILY LOAD PROFILE v1
   ========================================================= */

.daily-observations {
  margin-top: 16px;
}

#dailyLoadChart {
  margin-top: 18px;
  min-height: 290px;
}

@media (max-width: 600px) {

  #dailyLoadChart {
    min-height: 240px;
    height: 240px;
  }
}


/* =========================================================
   WATERMAN DAILY AGGREGATES v1
   ========================================================= */

.daily-history-table {
  margin-top: 16px;
  overflow-x: auto;
}

#dailyHistoryChart {
  margin-top: 18px;
  min-height: 290px;
}

#dailyHistoryDays {
  min-width: 115px;
  max-width: 150px;
}


@media (max-width: 600px) {

  #dailyHistoryChart {
    min-height: 240px;
    height: 240px;
  }

  #dailyHistoryDays {
    width: 100%;
    max-width: none;
  }
}


/* =========================================================
   WATERMAN LONG RANGE ANALYTICS v1
   ========================================================= */

#longRangePeriod {
  min-width: 120px;
  max-width: 160px;
}

@media (max-width: 600px) {

  #longRangePeriod {
    width: 100%;
    max-width: none;
  }
}


/* =========================================================
   WATERMAN HEALTH & DIAGNOSTICS v1
   ========================================================= */

.health-panel {
  overflow: hidden;
}


.health-hero {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;

  padding: 22px;

  border-radius: 16px;

  margin-bottom: 18px;

  border: 1px solid
    rgba(120, 120, 120, 0.2);
}


.health-normal {
  background:
    rgba(50, 160, 90, 0.08);
}


.health-attention {
  background:
    rgba(230, 160, 30, 0.10);
}


.health-degraded {
  background:
    rgba(220, 100, 50, 0.10);
}


.health-unknown {
  background:
    rgba(120, 120, 120, 0.10);
}


.health-label {
  font-size: 12px;
  opacity: 0.65;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}


.health-state {
  font-size: 28px;
  font-weight: 800;
  margin-top: 3px;
}


.health-reason {
  margin-top: 6px;
  max-width: 700px;
  line-height: 1.45;
  opacity: 0.8;
}


.health-score-wrap {
  text-align: center;
  min-width: 130px;
}


.health-score {
  display: inline;
  font-size: 42px;
  line-height: 1;
  font-weight: 800;
}


.health-score-max {
  display: inline;
  opacity: 0.55;
}


.health-score-caption {
  margin-top: 4px;
  font-size: 11px;
  opacity: 0.65;
}


.diagnostics-title {
  margin-top: 20px;
  margin-bottom: 10px;

  font-weight: 700;
  font-size: 17px;
}


.diagnostic-grid {
  display: grid;
  gap: 12px;
}


.diagnostic-card {
  border:
    1px solid
    rgba(120, 120, 120, 0.20);

  border-radius: 14px;

  padding: 15px;
}


.diagnostic-head {
  display: flex;
  gap: 10px;
  align-items: center;

  margin-bottom: 13px;
}


.diagnostic-row {
  display: grid;

  grid-template-columns:
    minmax(130px, 180px)
    1fr;

  gap: 12px;

  padding:
    7px 0;

  border-top:
    1px solid
    rgba(120, 120, 120, 0.10);
}


.diagnostic-row b {
  font-size: 12px;
  opacity: 0.7;
}


.diagnostic-row span {
  line-height: 1.4;
}


.health-ok-message {
  padding: 15px;

  border-radius: 12px;

  background:
    rgba(50, 160, 90, 0.07);

  margin-top: 15px;
}


@media (max-width: 700px) {

  .health-hero {
    flex-direction: column;
    align-items: stretch;
  }


  .health-score-wrap {
    text-align: left;
  }


  .diagnostic-row {
    grid-template-columns:
      1fr;
    gap: 3px;
  }
}


/* =========================================================
   WATERMAN ENGINEERING KNOWLEDGE BASE v1
   ========================================================= */

.knowledge-chain {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;

  margin:
    18px 0;
}


.knowledge-node {
  display: flex;
  align-items: center;
  gap: 7px;

  padding:
    8px 11px;

  border-radius:
    20px;

  border:
    1px solid
    rgba(100, 120, 125, 0.20);
}


.knowledge-order {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 21px;
  height: 21px;

  border-radius:
    50%;

  background:
    rgba(20, 120, 140, 0.12);

  font-weight:
    700;

  font-size:
    11px;
}


.knowledge-grid {
  display:
    grid;

  grid-template-columns:
    repeat(
      auto-fit,
      minmax(
        200px,
        1fr
      )
    );

  gap:
    12px;
}


.knowledge-card {
  padding:
    14px;

  border:
    1px solid
    rgba(100, 120, 125, 0.18);

  border-radius:
    13px;
}


.knowledge-card h3 {
  margin:
    0 0 8px 0;

  font-size:
    15px;
}


.knowledge-card div {
  margin-top:
    4px;
}


.knowledge-card strong {
  display:
    block;

  margin-top:
    8px;

  font-size:
    20px;
}


.knowledge-limits {
  margin-top:
    16px;

  padding:
    14px;

  border-radius:
    12px;

  background:
    rgba(30, 100, 120, 0.05);
}


.knowledge-limits div {
  margin-top:
    6px;
}


/* =========================================================
   WATERMAN ENGINEERING INTELLIGENCE v1
   ========================================================= */

.intelligence-panel {
  overflow: hidden;
}


.intelligence-hero {
  display: flex;
  justify-content: space-between;
  align-items: center;

  gap: 24px;

  padding: 22px;

  margin-bottom: 18px;

  border-radius: 16px;

  border:
    1px solid
    rgba(100, 120, 125, 0.18);
}


.intel-normal {
  background:
    rgba(40, 160, 90, 0.08);
}


.intel-attention {
  background:
    rgba(225, 155, 25, 0.10);
}


.intel-degraded {
  background:
    rgba(215, 90, 45, 0.10);
}


.intel-unknown {
  background:
    rgba(120, 120, 120, 0.08);
}


@media (max-width: 700px) {

  .intelligence-hero {
    flex-direction: column;
    align-items: stretch;
  }
}


/* =========================================================
   WATERMAN OPERATIONAL REPORT v1
   ========================================================= */

.report-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 20px;

  padding: 18px;

  border-radius: 14px;

  background:
    rgba(30, 110, 125, 0.06);

  margin-bottom: 14px;
}


.report-state {
  margin-top: 3px;

  font-size: 24px;
  font-weight: 800;
}


.report-health {
  white-space: nowrap;
}


.report-health strong {
  font-size: 32px;
}


.report-health span {
  opacity: 0.65;
}


.report-narrative {
  display: grid;
  gap: 8px;

  margin-bottom: 16px;
}


.report-line {
  padding: 10px 12px;

  border-radius: 10px;

  border:
    1px solid
    rgba(100, 120, 125, 0.12);

  line-height: 1.45;
}


@media (max-width: 650px) {

  .report-summary {
    flex-direction: column;
    align-items: stretch;
  }
}


/* =========================================================
   WATERMAN EVENT INTELLIGENCE v1
   ========================================================= */

.event-intelligence-list {
  display: grid;
  gap: 12px;

  margin-top: 16px;
}


.event-diagnostic-card {
  padding: 16px;

  border-radius: 14px;

  border:
    1px solid
    rgba(110, 120, 130, 0.18);
}


.event-recovered,
.event-green {
  background:
    rgba(45, 150, 85, 0.05);
}


.event-active,
.event-red {
  background:
    rgba(220, 90, 45, 0.07);
}


.event-yellow {
  background:
    rgba(225, 170, 35, 0.08);
}


.event-gray {
  background:
    rgba(110, 120, 130, 0.07);
}


.event-blue {
  background:
    rgba(40, 120, 200, 0.07);
}


.event-diagnostic-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;

  gap: 15px;

  margin-bottom: 10px;
}


.event-rule {
  font-size: 11px;
  font-weight: 700;

  opacity: 0.55;

  margin-bottom: 3px;
}


.event-state-badge {
  padding: 6px 9px;

  border-radius: 15px;

  font-size: 11px;
  font-weight: 700;

  background:
    rgba(80, 110, 120, 0.10);
}


.event-meta {
  display: flex;
  flex-wrap: wrap;

  gap: 12px;

  margin-bottom: 10px;

  font-size: 12px;

  opacity: 0.68;
}


@media (max-width: 650px) {

  .event-diagnostic-header {
    flex-direction: column;
  }
}


/* WATERMAN navigation readability safeguard */
.waterman-main-nav .nav-link {
  color: rgba(255,255,255,.86);
  text-decoration: none;
}

.waterman-main-nav .nav-link:visited {
  color: rgba(255,255,255,.86);
}

.waterman-main-nav .nav-link:hover,
.waterman-main-nav .active-link,
.waterman-main-nav .active-link:visited {
  color: #fff;
}



/* WATERMAN sidebar browser-link override */
.sidebar a,
.sidebar a:link,
.sidebar a:visited,
.sidebar .nav-link,
.sidebar .nav-link:link,
.sidebar .nav-link:visited,
.waterman-main-nav a,
.waterman-main-nav a:link,
.waterman-main-nav a:visited {
  color: rgba(238,247,248,.88) !important;
  text-decoration: none !important;
}

.sidebar a:hover,
.sidebar .nav-link:hover,
.waterman-main-nav a:hover,
.sidebar .active-link,
.sidebar .active-link:visited,
.waterman-main-nav .active-link,
.waterman-main-nav .active-link:visited {
  color: #fff !important;
}


/* =========================================================
   WATERMAN ENGINEERING VISUALIZATION v2.0
   FINAL INDUSTRIAL CHART CONTRACT
   ========================================================= */

:root {
  --wm-source: #0057b8;
  --wm-treated: #008e5a;
  --wm-temperature: #b84718;
  --wm-previous: #596d75;

  --wm-chart-text: #263f47;
  --wm-chart-muted: #526970;
  --wm-chart-grid: #d4dee2;
  --wm-chart-border: #c8d5da;
  --wm-chart-bg: #ffffff;
}


.chart {
  display: block;

  width: 100%;
  max-width: 100%;

  min-height: 320px;

  border:
    1px solid
    var(--wm-chart-border);

  border-radius: 12px;

  background:
    var(--wm-chart-bg);

  box-shadow:
    inset 0 0 0 1px
    rgba(255,255,255,.7);

  image-rendering: auto;
}


.panel:has(.chart) {
  overflow: hidden;
}


.panel:has(.chart) h2 {
  margin-bottom: 4px;

  color:
    var(--wm-chart-text);

  font-size: 18px;
  font-weight: 750;
  letter-spacing: -.01em;
}


.panel:has(.chart) .hint,
.panel:has(.chart) .subtitle {
  color:
    var(--wm-chart-muted);

  font-size: 12px;
  font-weight: 550;
}


#flowChart,
#pressureChart,
#temperatureChart,
#dailyLoadChart,
#dailyHistoryChart {
  margin-top: 10px;
}


.period {
  min-height: 38px;

  padding:
    8px 15px;

  border-color:
    #c7d4d9;

  color:
    #263f47;

  background:
    #ffffff;

  font-size: 12px;
  font-weight: 650;
}


.period:hover {
  border-color:
    #6f8b94;

  background:
    #f4f8f9;
}


.period.active {
  border-color:
    #086d80;

  background:
    #086d80;

  color:
    #ffffff;

  box-shadow:
    0 2px 7px
    rgba(8,109,128,.22);
}


.chart + .method,
.method {
  color:
    #526970;
}


@media (max-width: 780px) {
  .chart {
    min-height: 360px;
    border-radius: 10px;
  }

  .panel:has(.chart) {
    padding:
      15px 12px;
  }

  .period {
    flex:
      1 0 auto;

    min-width:
      82px;
  }
}
