body {
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  padding: 20px;
  line-height: 1.4;
}

.controls {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 12px;
}

#price {
  font-size: 1.25rem;
}

#price strong {
  font-weight: 700;
}

#description ul {
  list-style: none;
  padding-left: 0;
  margin: 8px 0 18px 0;
}

#description li {
  margin: 6px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

#description li::before {
  content: "🔒";
  display: inline-block;
  width: 18px;
  height: 18px;
  text-align: center;
  line-height: 18px;
}

/* Container for diagram */

.diagram-wrapper {
  /*max-width: 900px;*/
  /*margin-top: 6px;*/
  /*padding: 12px;*/
  /*border-radius: 10px;*/
  /*background: #fbfbfb;*/
  /*box-shadow: 0 1px 3px rgba(0,0,0,0.06);*/
  /*display: flex;*/
  /*justify-content: center;*/
  /*align-items: center;*/
  /*flex-direction: row;*/
  text-align: center;
}

/* Make sure SVG scales nicely */

.subway-svg {
  width: 100%;
  height: auto;
  /*display: block;*/
  display: inline-block;
  max-width: 900px;
}

/* Text styling for labels under stations */

.station-label {
  font-size: 0.95rem;
  text-anchor: middle;
  dominant-baseline: hanging;
  fill: #222;
}

/* Small responsive tweak */

@media (max-width: 420px) {
  .controls {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}

@media (max-width: 420px) {
  .mobile_hidden {
    display: none;
  }
}

@media (max-width: 420px) {
  #price {
    font-size: 1.1rem;
  }
}

