.station-stats-toggle-btn {
  appearance: none;
  -webkit-appearance: none;
  border: 0;
  background: transparent;
  padding: 0;
  margin: 0;
  cursor: pointer;
  text-align: left;
  font: inherit;
  box-shadow: none;
}

.station-stats-toggle-btn:hover,
.station-stats-toggle-btn:active {
  background: transparent;
}

.station-stats-toggle-btn:focus-visible {
  outline: 2px solid rgba(59, 130, 246, 0.35);
  outline-offset: 2px;
}

.station-stats-card {
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid #e7edf5;
}

.station-stats-card-head {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.station-stats-card-head h3 {
  margin: 0;
  font-size: 1.04rem;
  line-height: 1.35;
  color: #0f172a;
}

.station-stats-card-head p {
  margin: 0;
  color: #64748b;
  font-size: 0.92rem;
}

.station-stats-canvas-wrap {
  width: 100%;
  min-height: 320px;
  padding: 18px;
  border-radius: 18px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  border: 1px solid #dbe5f0;
}

.station-stats-canvas-wrap canvas {
  display: block;
  width: 100%;
  height: 320px;
}

.station-stats-total {
  margin-top: 14px;
  color: #475569;
  font-size: 0.95rem;
}

.station-stats-total strong {
  color: #0f172a;
}

@media (max-width: 767px) {
  .station-stats-canvas-wrap {
    min-height: 260px;
    padding: 14px;
  }

  .station-stats-canvas-wrap canvas {
    height: 260px;
  }
}