body {
  margin: 0;
  padding-bottom: 90px;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f0f2f5;
}

.sticky-player-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 90px;
  background-color: #1a1a1a;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.5);
  box-sizing: border-box;
  border-top: 5px solid #e51322;
  z-index: 2147483647 !important;
}

.left-section,
.center-section,
.right-section {
  display: flex;
  align-items: flex-start;
  flex: 1;
  height: 100%;
}

.center-section {
  justify-content: center;
  align-items: center;
}

.right-section {
  justify-content: flex-end;
  align-items: center;
}

.station-info {
  display: flex;
  align-items: center;
}

.station-info img {
  width: 90px;
  height: 90px;
  margin-right: 15px;
  margin-top: -5px;
}

.station-info .text-details .live-indicator {
  color: #e51322;
  font-weight: bold;
  font-size: 0.8em;
}

.station-info .text-details .song-title {
  font-size: 1em;
  font-weight: bold;
  margin: 2px 0;
}

.player-controls {
  display: flex;
  align-items: center;
  gap: 25px;
}

.control-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  fill: #c7c7c7;
}
.control-btn:hover svg {
  fill: #ffffff;
}

.play-pause-btn {
  background-color: transparent;
  border: 2px solid #e51322;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.play-pause-btn svg {
  fill: #e51322;
  width: 24px;
  height: 24px;
}
.play-pause-btn:hover {
  transform: scale(1.1);
  transition: transform 0.2s;
}

.station-selector {
  position: relative;
}

.select-station-btn {
  background-color: #e51322;
  color: white;
  border: none;
  padding: 10px 15px;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
}

.station-list {
  display: none;
  position: absolute;
  bottom: 55px;
  right: 0;
  background-color: #2b2b2b;
  list-style: none;
  margin: 0;
  padding: 10px 0;
  border-radius: 5px;
  box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.4);
  width: 200px;
  z-index: 2147483647 !important;
}

.station-list.show {
  display: block;
}

.station-list li {
  padding: 12px 20px;
  cursor: pointer;
  white-space: nowrap;
}

.station-list li:hover {
  background-color: #444;
}

.station-list li.active {
  color: #e51322;
  font-weight: bold;
}

.content {
  padding: 20px;
  height: 200vh;
}
.content h1 {
  text-align: center;
}