.station-switchers {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.station-switcher {
  width: 42px;
  height: 42px;
  min-width: 42px;
  min-height: 42px;
  max-width: 42px;
  max-height: 42px;
  border-radius: 50%;
  overflow: hidden;
  border: none;
  box-sizing: border-box;
  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, transform 0.2s;
  cursor: pointer;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  aspect-ratio: 1/1;
}

.station-switcher.active {
  width: 48px;
  height: 48px;
  min-width: 48px;
  min-height: 48px;
  max-width: 48px;
  max-height: 48px;
  border: 2px solid white;
  box-sizing: border-box;
  box-shadow: 0 2px 8px rgba(13,28,61,0.16);
  z-index: 1;
  transform: scale(1.05);
}

.station-switcher:hover {
  transform: scale(1.02);
  box-shadow: 0 2px 6px rgba(0,0,0,0.12);
}

.station-switcher.active:hover {
  transform: scale(1.08);
}



.station-switcher:focus {
  outline: 2px solid #0d1c3d;
  outline-offset: 2px;
}

/* Theme-specific hover effects */
.theme-tidex .station-switcher:focus {
  outline-color: rgb(239, 67, 67);
}

.theme-tidernb .station-switcher:focus {
  outline-color: #111112;
} 