.station-v1 {
  --station-v1-bg: #07131d;
  --station-v1-surface: #0b1823;
  --station-v1-surface-strong: #0f1e29;
  --station-v1-text: #edf3f7;
  --station-v1-strong: #ffffff;
  --station-v1-muted: #93a1b2;
  --station-v1-border: rgba(151, 172, 190, 0.18);
  --station-v1-border-strong: rgba(151, 172, 190, 0.28);
  --station-v1-brand: #5edab9;
  --station-v1-brand-dark: #0d3d36;
  --station-v1-live: #56d7aa;
  --station-v1-solar: #f3bd32;
  --station-v1-grid: #63a5ff;
  --station-v1-export: #58d7ad;
  --station-v1-consumption: #9aaabe;
  --station-v1-danger: #ff7a83;
  --station-v1-line: rgba(154, 173, 190, 0.42);
  --station-v1-chart-grid: rgba(154, 173, 190, 0.2);
  position: relative;
  min-width: 0;
  margin: -24px -28px -34px;
  padding: 30px 28px 38px;
  overflow: clip;
  background: var(--station-v1-bg);
  color: var(--station-v1-text);
  font-variant-numeric: tabular-nums;
}

.station-v1,
.station-v1 * {
  box-sizing: border-box;
}

.station-v1[hidden],
.station-v1 [hidden] {
  display: none !important;
}

.station-v1 :where(button) {
  color: inherit;
  font: inherit;
}

.station-v1 .station-v1__icon svg,
.station-v1 .station-v1__station-icon svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.station-v1 button:focus-visible {
  outline: 3px solid var(--station-v1-brand);
  outline-offset: 3px;
}

.station-v1__header {
  display: flex;
  min-width: 0;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 20px;
}

.station-v1__identity {
  min-width: 0;
}

.station-v1__context,
.station-v1__eyebrow {
  display: block;
  margin-bottom: 5px;
  color: var(--station-v1-muted);
  font-size: 10px;
  font-weight: 760;
  letter-spacing: 0.08em;
  line-height: 1.4;
  text-transform: uppercase;
}

.station-v1__identity h2 {
  margin: 0;
  overflow-wrap: anywhere;
  color: var(--station-v1-strong);
  font-size: clamp(21px, 2vw, 28px);
  font-weight: 730;
  line-height: 1.12;
}

.station-v1__status-cluster {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  color: var(--station-v1-muted);
  font-size: 11px;
}

.station-v1__updated {
  padding-right: 12px;
  border-right: 1px solid var(--station-v1-border-strong);
  white-space: nowrap;
}

.station-v1__mode {
  padding: 5px 8px;
  border: 1px solid var(--station-v1-border);
  border-radius: 4px;
  color: var(--station-v1-muted);
  font-size: 9px;
  font-weight: 760;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.station-v1__live-status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--station-v1-muted);
  font-weight: 700;
  white-space: nowrap;
}

.station-v1__live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--station-v1-muted);
  box-shadow: 0 0 0 4px rgba(147, 161, 178, 0.08);
}

.station-v1__live-status[data-status="live"] {
  color: var(--station-v1-live);
}

.station-v1__live-status[data-status="live"] .station-v1__live-dot {
  background: var(--station-v1-live);
  box-shadow: 0 0 0 4px rgba(86, 215, 170, 0.1), 0 0 16px rgba(86, 215, 170, 0.32);
}

.station-v1__live-status[data-status="partial"] {
  color: var(--station-v1-solar);
}

.station-v1__live-status[data-status="partial"] .station-v1__live-dot {
  background: var(--station-v1-solar);
  box-shadow: 0 0 0 4px rgba(243, 189, 50, 0.1);
}

.station-v1__live-status[data-status="offline"] {
  color: var(--station-v1-danger);
}

.station-v1__live-status[data-status="offline"] .station-v1__live-dot {
  background: var(--station-v1-danger);
}

.station-v1__state {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  margin: 0 0 18px;
  padding: 12px 14px;
  border: 1px solid var(--station-v1-border);
  background: var(--station-v1-surface);
}

.station-v1__state .station-v1__icon {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border: 1px solid var(--station-v1-border);
  border-radius: 5px;
  color: var(--station-v1-muted);
}

.station-v1__state .station-v1__icon svg {
  width: 17px;
  height: 17px;
}

.station-v1[data-state="partial"] .station-v1__state,
.station-v1[data-state="stale"] .station-v1__state {
  border-color: rgba(243, 189, 50, 0.3);
}

.station-v1[data-state="partial"] .station-v1__state .station-v1__icon,
.station-v1[data-state="stale"] .station-v1__state .station-v1__icon {
  color: var(--station-v1-solar);
}

.station-v1[data-state="error"] .station-v1__state {
  border-color: rgba(255, 122, 131, 0.34);
}

.station-v1[data-state="error"] .station-v1__state .station-v1__icon {
  color: var(--station-v1-danger);
}

.station-v1__state strong {
  display: block;
  color: var(--station-v1-strong);
  font-size: 12px;
}

.station-v1__state p {
  margin: 2px 0 0;
  color: var(--station-v1-muted);
  font-size: 11px;
  line-height: 1.45;
}

.station-v1__state-action {
  min-height: 44px;
  padding: 8px 13px;
  border: 1px solid var(--station-v1-border-strong);
  border-radius: 7px;
  background: transparent;
  color: var(--station-v1-brand);
  font: inherit;
  font-size: 10px;
  font-weight: 700;
  cursor: pointer;
}

.station-v1__state-action:hover {
  border-color: var(--station-v1-brand);
}

.station-v1__state-action:focus-visible {
  outline: 2px solid var(--station-v1-brand);
  outline-offset: 2px;
}

.station-v1__layout {
  display: grid;
  min-width: 0;
  grid-template-columns: minmax(0, 2.35fr) minmax(285px, 0.9fr);
  align-items: stretch;
  gap: 24px;
}

.station-v1__primary {
  min-width: 0;
}

.station-v1__flow {
  min-width: 0;
}

.station-v1__section-header,
.station-v1__chart-header {
  display: flex;
  min-width: 0;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.station-v1__section-header {
  min-height: 30px;
  margin-bottom: 4px;
}

.station-v1__section-header h3,
.station-v1__chart-header h3,
.station-v1__fleet h3,
.station-v1__rail h3 {
  margin: 0;
  color: var(--station-v1-strong);
  font-size: 12px;
  font-weight: 720;
  letter-spacing: 0.01em;
  line-height: 1.35;
}

.station-v1__section-header h3 {
  color: var(--station-v1-muted);
}

.station-v1__flow-source {
  color: var(--station-v1-muted);
  font-size: 10px;
  white-space: nowrap;
}

.station-v1__flow-stage {
  position: relative;
  display: grid;
  min-width: 0;
  min-height: 500px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(0, 1fr));
  align-items: center;
  row-gap: 80px;
}

.station-v1__flow-stage[data-has-battery="false"] {
  min-height: 276px;
  grid-template-rows: minmax(0, 1fr);
}

.station-v1__flow-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.station-v1__flow-node {
  position: relative;
  z-index: 1;
  display: grid;
  min-width: 0;
  justify-items: center;
  gap: 7px;
  padding: 16px 10px;
  text-align: center;
}

.station-v1__flow-node--solar {
  justify-self: start;
}

.station-v1__flow-node--grid {
  justify-self: end;
}

.station-v1__flow-node--solar {
  grid-column: 1;
  grid-row: 1;
}

.station-v1__flow-node--home {
  grid-column: 2;
  grid-row: 1;
}

.station-v1__flow-node--grid {
  grid-column: 3;
  grid-row: 1;
}

.station-v1__flow-node--battery {
  width: min(100%, 520px);
  min-height: 164px;
  grid-column: 1 / -1;
  grid-row: 2;
  justify-self: center;
  grid-template-columns: 96px minmax(0, 1fr);
  grid-template-rows: auto minmax(54px, auto);
  align-items: center;
  justify-items: stretch;
  gap: 10px 24px;
  padding: 20px 24px;
  border: 1px solid var(--station-v1-border-strong);
  border-left: 3px solid var(--station-v1-brand);
  border-radius: 8px;
  background: var(--station-v1-surface);
  text-align: left;
}

.station-v1__flow-node--battery > [data-icon-slot] {
  grid-column: 1;
  grid-row: 1 / span 2;
  justify-self: center;
  background: var(--station-v1-surface);
}

.station-v1__flow-node--battery > div:not(.station-v1__flow-reading) {
  grid-column: 2;
  grid-row: 1;
}

.station-v1__flow-node--battery > div:not(.station-v1__flow-reading) > span {
  font-size: 12px;
  line-height: 1.4;
}

.station-v1__flow-node > [data-icon-slot] {
  display: block;
  padding: 4px;
  background: var(--station-v1-bg);
}

.station-v1__flow-node--battery > [data-icon-slot] {
  background: var(--station-v1-surface);
}

.station-v1__flow-node .station-v1__icon {
  display: grid;
  width: 47px;
  height: 47px;
  place-items: center;
}

.station-v1__flow-node .station-v1__icon svg {
  width: 38px;
  height: 38px;
  stroke-width: 1.35;
}

.station-v1__flow-node--home .station-v1__icon {
  width: 68px;
  height: 68px;
}

.station-v1__flow-node--home .station-v1__icon svg {
  width: 58px;
  height: 58px;
}

.station-v1__flow-node--battery .station-v1__icon {
  width: 92px;
  height: 92px;
}

.station-v1__flow-node--battery .station-v1__icon svg {
  width: 82px;
  height: 82px;
}

.station-v1__flow-node--solar .station-v1__icon,
.station-v1__flow-node--solar strong {
  color: var(--station-v1-solar);
}

.station-v1__flow-node--grid .station-v1__icon,
.station-v1__flow-node--grid strong {
  color: var(--station-v1-grid);
}

.station-v1__flow-node--home .station-v1__icon,
.station-v1__flow-node--home strong {
  color: var(--station-v1-solar);
}

.station-v1__flow-node--battery .station-v1__icon,
.station-v1__flow-node--battery strong {
  color: var(--station-v1-brand);
}

.station-v1__flow-node h4 {
  margin: 0;
  color: var(--station-v1-strong);
  font-size: 13px;
  font-weight: 750;
  letter-spacing: 0.025em;
  text-transform: uppercase;
}

.station-v1__flow-node div > span {
  display: block;
  margin-top: 1px;
  color: var(--station-v1-muted);
  font-size: 10px;
}

.station-v1__flow-node strong {
  min-height: 31px;
  padding: 2px 6px;
  background: var(--station-v1-bg);
  font-size: clamp(21px, 2.1vw, 29px);
  font-weight: 710;
  line-height: 1.15;
  white-space: nowrap;
}

.station-v1__flow-reading {
  display: grid;
  min-height: 51px;
  place-items: center;
  gap: 2px;
  background: var(--station-v1-bg);
}

.station-v1__flow-node--battery .station-v1__flow-reading {
  width: 100%;
  min-height: 54px;
  grid-column: 2;
  grid-row: 2;
  grid-template-columns: minmax(128px, max-content) minmax(72px, max-content);
  grid-template-rows: auto auto;
  align-items: baseline;
  justify-items: start;
  justify-content: start;
  gap: 5px 18px;
  background: transparent;
}

.station-v1__flow-node--battery .station-v1__flow-reading > strong {
  grid-column: 1;
  grid-row: 1;
  padding: 0;
  background: transparent;
  font-size: clamp(27px, 2.3vw, 34px);
}

.station-v1__flow-reading > [hidden] {
  display: none;
}

.station-v1__flow-power-note {
  grid-column: 1 / -1;
  grid-row: 2;
  max-width: 220px;
  margin: 0;
  color: var(--station-v1-muted);
  font-size: 12px;
  font-weight: 590;
  letter-spacing: 0.005em;
  line-height: 1.35;
  text-wrap: balance;
}

.station-v1__flow-node--battery[data-power-mode="last-known"] .station-v1__flow-reading strong {
  color: var(--station-v1-muted);
  font-size: clamp(23px, 2vw, 29px);
  font-weight: 650;
}

.station-v1__flow-node--battery[data-power-mode="unavailable"] .station-v1__flow-reading {
  min-height: 58px;
}

.station-v1__flow-node .station-v1__flow-reading > [data-role="battery-flow-soc"] {
  grid-column: 2;
  grid-row: 1;
  margin: 0;
  color: var(--station-v1-brand);
  font-size: clamp(18px, 1.6vw, 23px);
  font-weight: 720;
  letter-spacing: 0.01em;
  line-height: 1.2;
}

.station-v1__battery {
  display: grid;
  min-width: 0;
  grid-template-columns: minmax(145px, 1fr) minmax(180px, 1.45fr);
  align-items: center;
  gap: 18px;
  margin: 0 6px 20px;
  padding: 14px 16px;
  border: 1px solid var(--station-v1-border);
  border-left: 3px solid var(--station-v1-brand);
  border-radius: 6px;
  background: var(--station-v1-surface);
}

.station-v1__battery[data-has-soc="false"] {
  grid-template-columns: minmax(145px, 1fr);
}

.station-v1__battery-identity,
.station-v1__battery-metric {
  min-width: 0;
}

.station-v1__battery-identity .station-v1__eyebrow {
  margin-bottom: 2px;
}

.station-v1__battery-identity h3 {
  margin: 0;
  color: var(--station-v1-strong);
  font-size: 14px;
  font-weight: 720;
  line-height: 1.3;
}

.station-v1__battery-state,
.station-v1__battery-freshness {
  display: block;
  margin-top: 3px;
  overflow-wrap: anywhere;
  color: var(--station-v1-muted);
  font-size: 11px;
  line-height: 1.35;
}

.station-v1__battery-freshness {
  font-variant-numeric: tabular-nums;
}

.station-v1__battery[data-state="charging"] .station-v1__battery-state {
  color: var(--station-v1-brand);
}

.station-v1__battery[data-state="discharging"] .station-v1__battery-state {
  color: var(--station-v1-solar);
}

.station-v1__battery-metric {
  padding-left: 18px;
  border-left: 1px solid var(--station-v1-border);
}

.station-v1__battery-metric > span {
  display: block;
  margin-bottom: 4px;
  color: var(--station-v1-muted);
  font-size: 11px;
  font-weight: 650;
}

.station-v1__battery-metric strong {
  display: block;
  overflow-wrap: anywhere;
  color: var(--station-v1-text);
  font-size: 18px;
  font-weight: 720;
  line-height: 1.2;
}

.station-v1__battery-metric--soc strong {
  color: var(--station-v1-brand);
}

.station-v1:not([data-live-state="live"]) .station-v1__battery-metric--soc {
  opacity: 0.68;
}

.station-v1__battery-meter {
  display: block;
  width: 100%;
  height: 5px;
  margin-top: 7px;
  overflow: hidden;
  appearance: none;
  border: 0;
  border-radius: 999px;
  background: var(--station-v1-border-strong);
}

.station-v1__battery-meter::-webkit-meter-bar {
  border-radius: 999px;
  background: var(--station-v1-border-strong);
}

.station-v1__battery-meter::-webkit-meter-optimum-value,
.station-v1__battery-meter::-webkit-meter-suboptimum-value,
.station-v1__battery-meter::-webkit-meter-even-less-good-value {
  border-radius: 999px;
  background: var(--station-v1-brand);
}

.station-v1__battery-meter::-moz-meter-bar {
  border-radius: 999px;
  background: var(--station-v1-brand);
}

.station-v1__battery-profile {
  display: grid;
  min-width: 0;
  grid-column: 1 / -1;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 10px 18px;
  margin: 0;
  padding: 13px 0 0;
  border-top: 1px solid var(--station-v1-border);
}

.station-v1__battery-profile > div {
  min-width: 0;
}

.station-v1__battery-profile > .station-v1__battery-autonomy-reference {
  grid-column: 1 / -1;
}

.station-v1__battery-profile dt,
.station-v1__battery-profile dd {
  margin: 0;
  overflow-wrap: anywhere;
}

.station-v1__battery-profile dt {
  color: var(--station-v1-muted);
  font-size: 10px;
  line-height: 1.35;
}

.station-v1__battery-profile dd {
  margin-top: 3px;
  color: var(--station-v1-text);
  font-size: 11px;
  font-weight: 680;
  line-height: 1.35;
}

.station-v1__battery[data-has-profile="false"] .station-v1__battery-profile {
  grid-template-columns: minmax(0, 1fr);
}

.station-v1__totals {
  display: grid;
  min-width: 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0;
  padding: 0 2px;
}

.station-v1__total {
  min-width: 0;
  padding: 2px 22px 10px;
  text-align: center;
}

.station-v1__total + .station-v1__total {
  border-left: 1px dashed var(--station-v1-border-strong);
}

.station-v1__total dt {
  margin-bottom: 5px;
  color: var(--station-v1-muted);
  font-size: 10px;
}

.station-v1__total dd {
  margin: 0;
  overflow-wrap: anywhere;
  color: var(--station-v1-text);
  font-size: 17px;
  font-weight: 720;
  line-height: 1.25;
}

.station-v1__total--import dd {
  color: var(--station-v1-grid);
}

.station-v1__total--export dd {
  color: var(--station-v1-export);
}

.station-v1__periods {
  display: grid;
  width: min(520px, 100%);
  min-height: 52px;
  grid-template-columns: repeat(auto-fit, minmax(52px, 1fr));
  gap: 2px;
  margin: 23px auto 30px;
  padding: 3px;
  border: 1px solid var(--station-v1-border);
  border-radius: 999px;
  background: var(--station-v1-surface);
}

.station-v1__periods button {
  min-width: 0;
  min-height: 44px;
  padding: 4px 10px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--station-v1-muted);
  cursor: pointer;
  font-size: 10px;
  font-weight: 650;
  white-space: nowrap;
}

.station-v1__periods button:hover:not(:disabled) {
  color: var(--station-v1-text);
}

.station-v1__periods button[aria-selected="true"] {
  border: 1px solid rgba(94, 218, 185, 0.24);
  background: #0b2027;
  color: var(--station-v1-brand);
}

.station-v1__periods button:disabled {
  cursor: not-allowed;
  opacity: 0.45;
}

.station-v1__chart-panel {
  min-width: 0;
  padding: 20px 6px 0;
  border-top: 1px solid var(--station-v1-border);
}

.station-v1__chart-header {
  align-items: flex-start;
  margin-bottom: 12px;
}

.station-v1__chart-header > div > span {
  display: block;
  margin-top: 4px;
  color: var(--station-v1-muted);
  font-size: 9px;
}

.station-v1__legend {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 7px 14px;
  margin: 0;
  padding: 0;
  color: var(--station-v1-muted);
  font-size: 9px;
  list-style: none;
}

.station-v1__legend li {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.station-v1__legend-key {
  width: 12px;
  height: 3px;
  border-radius: 2px;
  background: var(--station-v1-muted);
}

.station-v1__legend [data-series="generationKwh"] .station-v1__legend-key {
  background: var(--station-v1-solar);
}

.station-v1__legend [data-series="gridImportKwh"] .station-v1__legend-key {
  background: var(--station-v1-grid);
}

.station-v1__legend [data-series="gridExportKwh"] .station-v1__legend-key {
  background: var(--station-v1-export);
}

.station-v1__legend [data-series="consumptionKwh"] .station-v1__legend-key {
  background: var(--station-v1-consumption);
}

.station-v1__chart-frame {
  position: relative;
  min-height: 230px;
}

.station-v1__chart {
  display: block;
  width: 100%;
  height: 230px;
  border-radius: 8px;
  outline: none;
}

.station-v1__chart:focus-visible {
  box-shadow: 0 0 0 2px var(--station-v1-brand);
}

.station-v1__chart-tooltip {
  position: absolute;
  z-index: 3;
  min-width: 190px;
  max-width: min(260px, calc(100% - 16px));
  padding: 12px 14px;
  border: 1px solid var(--station-v1-border-strong);
  border-radius: 10px;
  background: rgba(8, 23, 32, 0.96);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.28);
  color: var(--station-v1-text);
  font-size: 11px;
  line-height: 1.35;
  pointer-events: none;
}

.station-v1__chart-tooltip[hidden] {
  display: none;
}

.station-v1__chart-tooltip > strong,
.station-v1__chart-tooltip time {
  display: block;
}

.station-v1__chart-tooltip time {
  margin-top: 3px;
  color: var(--station-v1-muted);
  font-variant-numeric: tabular-nums;
}

.station-v1__chart-tooltip-list {
  display: grid;
  gap: 5px;
  margin: 10px 0 0;
}

.station-v1__chart-tooltip-list > div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
}

.station-v1__chart-tooltip-list dt {
  color: var(--station-v1-muted);
}

.station-v1__chart-tooltip-list dd {
  margin: 0;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

.station-v1__chart-empty {
  display: grid;
  min-height: 230px;
  margin: 0;
  place-items: center;
  border-top: 1px dashed var(--station-v1-border);
  border-bottom: 1px dashed var(--station-v1-border);
  color: var(--station-v1-muted);
  font-size: 11px;
  text-align: center;
}

.station-v1__battery-chart-panel {
  min-width: 0;
  margin-top: 22px;
  padding: 20px 6px 0;
  border-top: 1px solid var(--station-v1-border);
}

.station-v1__battery-chart-header {
  display: flex;
  min-width: 0;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 12px;
}

.station-v1__battery-chart-header h3 {
  margin: 0;
  color: var(--station-v1-strong);
  font-size: 12px;
  font-weight: 720;
  line-height: 1.35;
}

.station-v1__battery-chart-header > div:first-child > span {
  display: block;
  margin-top: 4px;
  color: var(--station-v1-muted);
  font-size: 10px;
}

.station-v1__battery-history-status {
  min-height: 17px;
  margin: 0 0 10px;
  color: var(--station-v1-muted);
  font-size: 11px;
  line-height: 1.45;
}

.station-v1__chart-guidance {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}

.station-v1__chart-hint,
.station-v1__chart-resolution,
.station-v1__battery-chart-hint {
  margin: -4px 0 10px;
  color: var(--station-v1-muted);
  font-size: 11px;
  line-height: 1.45;
}

.station-v1__chart-resolution {
  flex: 0 0 auto;
  font-variant-numeric: tabular-nums;
  font-weight: 650;
  white-space: nowrap;
}

.station-v1__battery-periods {
  display: grid;
  width: min(330px, 100%);
  grid-template-columns: repeat(3, minmax(74px, 1fr));
  gap: 2px;
  padding: 3px;
  border: 1px solid var(--station-v1-border);
  border-radius: 999px;
  background: var(--station-v1-surface);
}

.station-v1__battery-periods button {
  min-width: 0;
  min-height: 44px;
  padding: 4px 9px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--station-v1-muted);
  cursor: pointer;
  font-size: 10px;
  font-weight: 650;
  white-space: nowrap;
}

.station-v1__battery-periods button:hover {
  color: var(--station-v1-text);
}

.station-v1__battery-periods button[aria-selected="true"] {
  border: 1px solid rgba(94, 218, 185, 0.24);
  background: #0b2027;
  color: var(--station-v1-brand);
}

.station-v1__battery-chart-frame {
  position: relative;
  min-height: 220px;
}

.station-v1__battery-chart {
  display: block;
  width: 100%;
  height: 220px;
  outline: none;
}

.station-v1__battery-chart:focus-visible {
  box-shadow: 0 0 0 2px var(--station-v1-brand);
}

.station-v1__battery-chart-message {
  display: grid;
  min-height: 220px;
  align-content: center;
  justify-items: center;
  gap: 12px;
  padding: 18px;
  border-top: 1px dashed var(--station-v1-border);
  border-bottom: 1px dashed var(--station-v1-border);
  color: var(--station-v1-muted);
  font-size: 11px;
  line-height: 1.5;
  text-align: center;
}

.station-v1__battery-chart-message[data-status="error"] {
  min-height: 132px;
  border: 1px solid rgba(255, 194, 48, 0.32);
  border-radius: 6px;
  background: rgba(255, 194, 48, 0.04);
}

.station-v1__battery-chart-message p {
  max-width: 560px;
  margin: 0;
}

.station-v1__battery-retry {
  min-height: 44px;
  padding: 8px 15px;
  border: 1px solid var(--station-v1-border-strong);
  border-radius: 6px;
  background: transparent;
  color: var(--station-v1-text);
  cursor: pointer;
  font: inherit;
  font-weight: 680;
}

.station-v1__battery-retry:hover {
  border-color: var(--station-v1-brand);
  color: var(--station-v1-brand);
}

.station-v1__fleet {
  min-width: 0;
  margin-top: 14px;
  padding: 18px 0 0;
  border-top: 1px solid var(--station-v1-border);
}

.station-v1__fleet header {
  padding: 0 6px 12px;
}

.station-v1__fleet h3 {
  color: var(--station-v1-muted);
  font-size: 10px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.station-v1__fleet-list {
  display: flex;
  min-width: 0;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scrollbar-width: thin;
}

.station-v1__station {
  position: relative;
  display: grid;
  min-width: 168px;
  flex: 1 0 168px;
  grid-template-columns: 32px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  padding: 17px 14px 15px;
  border-right: 1px solid var(--station-v1-border);
  border-bottom: 2px solid transparent;
}

.station-v1__station.is-selected {
  border-bottom-color: var(--station-v1-brand);
  background: #0a1b25;
}

.station-v1__station-status {
  position: absolute;
  top: 7px;
  left: 8px;
  color: var(--station-v1-muted);
}

.station-v1__station-status .station-v1__icon,
.station-v1__station-status svg {
  display: block;
  width: 15px;
  height: 15px;
}

.station-v1__station[data-status="live"] .station-v1__station-status {
  color: var(--station-v1-live);
}

.station-v1__station[data-status="partial"] .station-v1__station-status {
  color: var(--station-v1-solar);
}

.station-v1__station[data-status="offline"] .station-v1__station-status {
  color: var(--station-v1-danger);
}

.station-v1__station-icon {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  color: var(--station-v1-muted);
}

.station-v1__station-icon svg {
  width: 28px;
  height: 28px;
}

.station-v1__station div {
  min-width: 0;
}

.station-v1__station strong,
.station-v1__station div > span {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.station-v1__station strong {
  color: var(--station-v1-muted);
  font-size: 10px;
  font-weight: 650;
}

.station-v1__station div > span {
  margin-top: 3px;
  color: var(--station-v1-text);
  font-size: 14px;
  font-weight: 710;
}

.station-v1__fleet-empty {
  width: 100%;
  margin: 0;
  padding: 16px 6px;
  color: var(--station-v1-muted);
  font-size: 11px;
}

.station-v1__rail {
  display: grid;
  min-width: 0;
  grid-template-rows: auto auto minmax(290px, 1fr);
  gap: 20px;
}

.station-v1__finance,
.station-v1__battery-effect,
.station-v1__next {
  min-width: 0;
  border: 1px solid var(--station-v1-border);
  background: var(--station-v1-surface);
}

.station-v1__finance {
  padding: 34px 28px 26px;
}

.station-v1__battery-effect {
  padding: 24px 28px;
}

.station-v1__battery-effect-value {
  display: block;
  margin-top: 12px;
  overflow-wrap: anywhere;
  color: var(--station-v1-text);
  font-size: clamp(23px, 2.4vw, 31px);
  font-weight: 730;
  line-height: 1.15;
}

.station-v1__battery-effect-period {
  display: block;
  margin-top: 6px;
  color: var(--station-v1-muted);
  font-size: 10px;
}

.station-v1__battery-effect-note,
.station-v1__battery-effect-method,
.station-v1__battery-effect-quality {
  margin: 12px 0 0;
  overflow-wrap: anywhere;
  color: var(--station-v1-muted);
  font-size: 10px;
  line-height: 1.5;
}

.station-v1__battery-effect-method {
  padding-top: 12px;
  border-top: 1px solid var(--station-v1-border);
}

.station-v1__battery-effect-audit {
  margin-top: 10px;
  color: var(--station-v1-muted);
  font-size: 11px;
}

.station-v1__battery-effect-audit[hidden] {
  display: none;
}

.station-v1__battery-effect-audit summary {
  display: flex;
  min-height: 44px;
  align-items: center;
  cursor: pointer;
  color: var(--station-v1-brand);
  font-weight: 650;
  line-height: 1.4;
}

.station-v1__battery-effect-audit dl {
  display: grid;
  gap: 7px;
  margin: 0;
}

.station-v1__battery-effect-audit dl > div {
  display: grid;
  gap: 3px;
}

.station-v1__battery-effect-audit dt {
  color: var(--station-v1-muted);
}

.station-v1__battery-effect-audit dd {
  margin: 0;
  overflow-wrap: anywhere;
  color: var(--station-v1-text);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 10px;
}

.station-v1__battery-effect[data-available="false"] {
  border-style: dashed;
}

.station-v1__finance h3 {
  color: var(--station-v1-muted);
  font-weight: 500;
}

.station-v1__money {
  display: block;
  min-height: 43px;
  margin-top: 14px;
  overflow-wrap: anywhere;
  color: var(--station-v1-text);
  font-size: clamp(27px, 3vw, 37px);
  font-weight: 740;
  letter-spacing: -0.025em;
  line-height: 1.1;
}

.station-v1__money.is-positive {
  color: var(--station-v1-brand);
}

.station-v1__money.is-negative {
  color: var(--station-v1-danger);
}

.station-v1__money-period {
  display: block;
  margin-top: 7px;
  color: var(--station-v1-muted);
  font-size: 11px;
}

.station-v1__finance-note {
  min-height: 39px;
  margin: 21px 0 0;
  padding: 14px 0;
  border-top: 1px solid var(--station-v1-border);
  border-bottom: 1px solid var(--station-v1-border);
  color: var(--station-v1-muted);
  font-size: 10px;
  line-height: 1.55;
}

.station-v1__finance-coverage {
  display: grid;
  gap: 6px;
  margin-top: 16px;
  padding: 13px 14px;
  border: 1px solid var(--station-v1-border);
  background: color-mix(in srgb, var(--station-v1-surface) 88%, var(--station-v1-brand));
}

.station-v1__finance-coverage[hidden] {
  display: none;
}

.station-v1__finance-coverage > strong {
  color: var(--station-v1-text);
  font-size: 12px;
  font-weight: 690;
  line-height: 1.4;
}

.station-v1__finance-coverage > p {
  margin: 0;
  color: var(--station-v1-muted);
  font-size: 11px;
  line-height: 1.5;
}

.station-v1__finance-coverage details {
  margin-top: 2px;
  color: var(--station-v1-muted);
  font-size: 11px;
}

.station-v1__finance-coverage summary {
  display: flex;
  min-height: 44px;
  align-items: center;
  cursor: pointer;
  color: var(--station-v1-brand);
  font-weight: 650;
  line-height: 1.4;
}

.station-v1__finance-coverage ul {
  display: grid;
  gap: 5px;
  max-block-size: min(16rem, 40vh);
  margin: 7px 0 0;
  padding-left: 18px;
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-gutter: stable;
  line-height: 1.45;
}

.station-v1__finance-coverage ul:focus-visible {
  outline: 2px solid var(--station-v1-brand);
  outline-offset: 3px;
}

.station-v1__finance-breakdown {
  display: grid;
  gap: 15px;
  margin: 22px 0 0;
}

.station-v1__finance-breakdown > div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
}

.station-v1__finance-breakdown dt {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 9px;
  color: var(--station-v1-muted);
  font-size: 10px;
}

.station-v1__finance-breakdown dd {
  margin: 0;
  color: var(--station-v1-text);
  font-size: 11px;
  font-weight: 650;
  text-align: right;
  white-space: nowrap;
}

.station-v1__key {
  width: 8px;
  height: 8px;
  flex: 0 0 8px;
  border-radius: 50%;
  background: var(--station-v1-muted);
}

.station-v1__key--export {
  background: var(--station-v1-export);
}

.station-v1__key--import {
  background: var(--station-v1-grid);
}

.station-v1__key--consumption {
  background: var(--station-v1-solar);
}

.station-v1__provenance {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  gap: 9px;
  margin-top: 23px;
  padding-top: 18px;
  border-top: 1px solid var(--station-v1-border);
  color: var(--station-v1-muted);
  font-size: 9px;
  line-height: 1.45;
}

.station-v1__provenance .station-v1__icon,
.station-v1__provenance svg {
  width: 17px;
  height: 17px;
}

.station-v1__provenance span,
.station-v1__provenance small {
  display: block;
  overflow-wrap: anywhere;
}

.station-v1__provenance small {
  margin-top: 4px;
  color: #738395;
}

.station-v1__next {
  display: flex;
  min-height: 0;
  flex-direction: column;
  align-items: flex-start;
  padding: 28px;
}

.station-v1__next > [data-icon-slot="next"] {
  display: grid;
  width: 45px;
  height: 45px;
  margin: 28px 0 25px;
  place-items: center;
  border: 1px solid rgba(94, 218, 185, 0.25);
  border-radius: 5px;
  background: #0d302f;
  color: var(--station-v1-brand);
}

.station-v1__next > [data-icon-slot="next"] .station-v1__icon,
.station-v1__next > [data-icon-slot="next"] svg {
  width: 24px;
  height: 24px;
}

.station-v1__next h3 {
  color: var(--station-v1-muted);
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.station-v1__next > p {
  margin: 22px 0 24px;
  color: var(--station-v1-muted);
  font-size: 11px;
  line-height: 1.65;
}

.station-v1__primary-action,
.station-v1__details-action {
  width: 100%;
  min-height: 44px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 11px;
  font-weight: 760;
}

.station-v1__primary-action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: auto;
  padding: 0 16px;
  border: 1px solid var(--station-v1-brand);
  background: var(--station-v1-brand);
  color: #061813;
}

.station-v1__primary-action:hover {
  background: #77e3c5;
}

.station-v1__primary-action .station-v1__icon,
.station-v1__primary-action svg {
  width: 18px;
  height: 18px;
}

.station-v1__details-action {
  margin-top: 9px;
  padding: 0 14px;
  border: 1px solid var(--station-v1-border-strong);
  background: transparent;
  color: var(--station-v1-text);
}

.station-v1__details-action:hover {
  border-color: var(--station-v1-brand);
  color: var(--station-v1-brand);
}

.station-v1__readiness {
  overflow: hidden;
  border: 1px solid var(--station-v1-border-strong);
  border-radius: 12px;
  background: var(--station-v1-surface);
}

.station-v1__readiness > summary {
  display: grid;
  min-height: 74px;
  grid-template-columns: 44px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  cursor: pointer;
  list-style: none;
}

.station-v1__readiness > summary::-webkit-details-marker {
  display: none;
}

.station-v1__readiness > summary .station-v1__icon {
  width: 42px;
  height: 42px;
  padding: 9px;
  border-radius: 9px;
  background: var(--station-v1-brand-dark);
  color: var(--station-v1-brand);
}

.station-v1__readiness > summary span:last-child {
  display: grid;
  gap: 3px;
}

.station-v1__readiness > summary strong {
  color: var(--station-v1-strong);
  font-size: 16px;
}

.station-v1__readiness > summary small {
  color: var(--station-v1-muted);
  font-size: 12px;
}

.station-v1__readiness-body {
  display: grid;
  gap: 18px;
  padding: 18px;
  border-top: 1px solid var(--station-v1-border);
}

.station-v1__readiness-status,
.station-v1__equipment {
  display: grid;
  gap: 9px;
}

.station-v1__readiness-status > div {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 9px;
}

.station-v1__readiness-status h3,
.station-v1__equipment h3,
.station-v1__readiness-dialog h2,
.station-v1__readiness-dialog h3 {
  margin: 0;
  color: var(--station-v1-strong);
}

.station-v1__readiness-status p,
.station-v1__readiness-dialog p {
  margin: 0;
  color: var(--station-v1-muted);
  font-size: 12px;
  line-height: 1.5;
}

.station-v1__owner-badge {
  padding: 4px 8px;
  border: 1px solid var(--station-v1-solar);
  border-radius: 999px;
  color: var(--station-v1-solar);
  font-size: 10px;
  font-weight: 700;
}

.station-v1__readiness-facts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--station-v1-border);
  border-radius: 9px;
  background: var(--station-v1-border);
}

.station-v1__readiness-facts > div {
  display: grid;
  gap: 6px;
  padding: 13px;
  background: var(--station-v1-surface-strong);
}

.station-v1__readiness-facts dt {
  color: var(--station-v1-muted);
  font-size: 10px;
}

.station-v1__readiness-facts dd {
  margin: 0;
  color: var(--station-v1-strong);
  font-size: 15px;
  font-weight: 750;
}

.station-v1__equipment ul,
.station-v1__equipment-editor-list {
  display: grid;
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.station-v1__equipment li,
.station-v1__equipment-editor-list li {
  padding: 10px 12px;
  border: 1px solid var(--station-v1-border);
  border-radius: 8px;
  color: var(--station-v1-text);
  font-size: 12px;
}

.station-v1__equipment-editor-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.station-v1__readiness-dialog {
  width: min(760px, calc(100vw - 32px));
  max-height: min(860px, calc(100vh - 32px));
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--station-v1-border-strong);
  border-radius: 12px;
  background: var(--station-v1-surface);
  color: var(--station-v1-text);
}

.station-v1__readiness-dialog::backdrop {
  background: rgb(2 7 12 / 72%);
}

.station-v1__readiness-dialog-shell {
  display: grid;
  max-height: inherit;
  overflow: auto;
}

.station-v1__readiness-dialog-shell > header,
.station-v1__readiness-dialog-shell > section,
.station-v1__readiness-dialog-shell > form {
  padding: 18px 20px;
  border-bottom: 1px solid var(--station-v1-border);
}

.station-v1__readiness-dialog-shell > header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.station-v1__readiness-dialog-shell > section,
.station-v1__readiness-dialog-shell > form {
  display: grid;
  gap: 12px;
}

.station-v1__dialog-close {
  display: inline-flex;
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--station-v1-border-strong);
  border-radius: 8px;
  background: transparent;
  cursor: pointer;
}

.station-v1__dialog-close .station-v1__icon,
.station-v1__dialog-close svg {
  display: block;
  width: 20px;
  height: 20px;
}

.station-v1__owner-form-status {
  min-height: 0;
  padding: 0 20px;
  color: var(--station-v1-brand);
}

.station-v1__owner-form-status:not(:empty) {
  padding-top: 12px;
}

.station-v1__owner-form-status.is-error {
  color: var(--station-v1-danger);
}

.station-v1__readiness-dialog label {
  display: grid;
  gap: 6px;
  color: var(--station-v1-muted);
  font-size: 11px;
}

.station-v1__readiness-dialog :where(input, select) {
  min-width: 0;
  min-height: 44px;
  padding: 9px 11px;
  border: 1px solid var(--station-v1-border-strong);
  border-radius: 8px;
  background: var(--station-v1-surface-strong);
  color: var(--station-v1-strong);
  font: inherit;
}

.station-v1__owner-field-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.station-v1__owner-confirm {
  grid-template-columns: 22px minmax(0, 1fr) !important;
  align-items: center;
}

.station-v1__owner-confirm input {
  min-height: 22px;
}

.station-v1__next > small {
  display: block;
  margin-top: 18px;
  color: #718193;
  font-size: 9px;
  line-height: 1.55;
}

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

@media (prefers-reduced-motion: no-preference) {
  .station-v1:not([hidden]) {
    animation: station-v1-enter 220ms ease-out both;
  }

  .station-v1__live-status[data-status="live"] .station-v1__live-dot {
    animation: station-v1-live 2.4s ease-in-out infinite;
  }
}

@keyframes station-v1-enter {
  from {
    opacity: 0;
    transform: translateY(4px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes station-v1-live {
  0%,
  100% {
    box-shadow: 0 0 0 3px rgba(86, 215, 170, 0.08), 0 0 12px rgba(86, 215, 170, 0.2);
  }

  50% {
    box-shadow: 0 0 0 5px rgba(86, 215, 170, 0.13), 0 0 18px rgba(86, 215, 170, 0.36);
  }
}

@media (max-width: 1120px) {
  .station-v1__layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .station-v1__rail {
    grid-template-columns: repeat(auto-fit, minmax(285px, 1fr));
    grid-template-rows: auto;
  }

  .station-v1__next > [data-icon-slot="next"] {
    margin-top: 8px;
  }
}

@media (max-width: 960px) {
  .station-v1__flow-stage {
    min-height: auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: repeat(3, max-content);
    align-items: stretch;
    row-gap: 80px;
    padding-block: 12px;
  }

  .station-v1__flow-stage[data-has-battery="false"] {
    min-height: auto;
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: repeat(3, max-content);
  }

  .station-v1__flow-node,
  .station-v1__flow-node--solar,
  .station-v1__flow-node--grid,
  .station-v1__flow-node--battery {
    justify-self: center;
  }

  .station-v1__flow-node--solar {
    grid-column: 1;
    grid-row: 1;
  }

  .station-v1__flow-node--battery {
    width: min(100%, 520px);
    grid-column: 1 / -1;
    grid-row: 3;
  }

  .station-v1__flow-node--home {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .station-v1__flow-node--grid {
    grid-column: 2;
    grid-row: 1;
  }

  .station-v1__flow-stage[data-has-battery="false"] .station-v1__flow-node--solar,
  .station-v1__flow-stage[data-has-battery="false"] .station-v1__flow-node--home,
  .station-v1__flow-stage[data-has-battery="false"] .station-v1__flow-node--grid {
    grid-column: 1;
  }

  .station-v1__flow-stage[data-has-battery="false"] .station-v1__flow-node--grid {
    grid-row: 3;
  }
}

@media (max-width: 760px) {
  .station-v1 {
    margin: -24px -16px -36px;
    padding: 24px 16px 34px;
  }

  .station-v1__header {
    align-items: flex-start;
  }

  .station-v1__status-cluster {
    flex-wrap: wrap;
  }

  .station-v1__updated {
    width: 100%;
    padding: 0;
    border: 0;
    text-align: right;
  }

  .station-v1__state {
    grid-template-columns: 34px minmax(0, 1fr);
  }

  .station-v1__state-action {
    grid-column: 2;
    justify-self: start;
  }

  .station-v1__flow-stage {
    row-gap: 80px;
  }

  .station-v1__flow-node,
  .station-v1__flow-node--solar,
  .station-v1__flow-node--grid {
    justify-self: center;
  }

  .station-v1__battery {
    grid-template-columns: minmax(0, 1fr);
    gap: 14px;
    margin-right: 0;
    margin-left: 0;
    padding: 14px;
  }

  .station-v1__battery[data-has-soc="false"] {
    grid-template-columns: minmax(0, 1fr);
  }

  .station-v1__battery-identity {
    grid-column: 1 / -1;
  }

  .station-v1__battery-profile {
    grid-column: 1 / -1;
  }

  .station-v1__battery-metric {
    padding-left: 0;
    border-left: 0;
  }

  .station-v1__totals {
    grid-template-columns: minmax(0, 1fr);
  }

  .station-v1__total {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: baseline;
    gap: 12px;
    padding: 12px 6px;
    text-align: left;
  }

  .station-v1__total + .station-v1__total {
    border-top: 1px dashed var(--station-v1-border-strong);
    border-left: 0;
  }

  .station-v1__total dt {
    margin: 0;
  }

  .station-v1__total dd {
    text-align: right;
  }

  .station-v1__rail {
    grid-template-columns: minmax(0, 1fr);
  }

  .station-v1__readiness-facts,
  .station-v1__owner-field-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 520px) {
  .station-v1 {
    margin: -20px -14px -30px;
    padding: 20px 14px 28px;
  }

  .station-v1__header {
    display: grid;
    gap: 13px;
  }

  .station-v1__status-cluster {
    width: 100%;
    justify-content: flex-start;
  }

  .station-v1__updated {
    width: auto;
    text-align: left;
  }

  .station-v1__section-header,
  .station-v1__chart-header,
  .station-v1__battery-chart-header {
    align-items: flex-start;
  }

  .station-v1__flow-source {
    max-width: 45%;
    overflow-wrap: anywhere;
    text-align: right;
    white-space: normal;
  }

  .station-v1__flow-node--battery {
    width: 100%;
    min-height: 146px;
    grid-column: 1 / -1;
    grid-row: 3;
    grid-template-columns: 76px minmax(0, 1fr);
    gap: 8px 16px;
    padding: 16px 18px;
  }

  .station-v1__flow-node--grid {
    grid-column: 2;
    grid-row: 1;
  }

  .station-v1__flow-stage[data-has-battery="false"] .station-v1__flow-node--grid {
    grid-column: 1;
    grid-row: 3;
  }

  .station-v1__flow-node--battery .station-v1__icon {
    width: 72px;
    height: 72px;
  }

  .station-v1__flow-node--battery .station-v1__icon svg {
    width: 64px;
    height: 64px;
  }

  .station-v1__flow-node--battery .station-v1__flow-reading {
    grid-template-columns: minmax(108px, max-content) minmax(64px, max-content);
    gap: 5px 12px;
  }

  .station-v1__flow-node--battery .station-v1__flow-reading > strong {
    font-size: clamp(24px, 7vw, 30px);
  }

  .station-v1__periods {
    width: 100%;
  }

  .station-v1__periods button {
    padding-inline: 5px;
    font-size: 9px;
  }

  .station-v1__chart-header {
    display: grid;
  }

  .station-v1__battery-chart-header {
    display: grid;
  }

  .station-v1__battery-periods {
    width: 100%;
  }

  .station-v1__legend {
    justify-content: flex-start;
  }

  .station-v1__finance,
  .station-v1__battery-effect,
  .station-v1__next {
    padding: 22px 19px;
  }

  .station-v1__readiness-facts,
  .station-v1__owner-field-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .station-v1__readiness-dialog {
    width: calc(100vw - 16px);
    max-height: calc(100vh - 16px);
  }
}

@media (max-width: 360px) {
  .station-v1 {
    margin-right: -12px;
    margin-left: -12px;
  }
}
