.station-switchers {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.station-switcher {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  overflow: hidden;
  border: 1.5px solid rgba(255,255,255,0.25);
  box-shadow: 0 1px 4px rgba(0,0,0,0.08);
  transition: box-shadow 0.2s, border-color 0.2s, width 0.2s, height 0.2s;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f7f7fa;
}
.station-switcher.active {
  width: 48px;
  height: 48px;
  border: 2px solid white;
  box-shadow: 0 2px 8px rgba(13,28,61,0.16);
  z-index: 1;
}
.station-switcher img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}
.station-switcher:focus {
  outline: 2px solid #0d1c3d;
  outline-offset: 2px;
}
