/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Aug 03 2026 | 22:35:28 */
body {
  padding-bottom: 90px;
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
}

.live-player-bar {
  position: fixed;
  bottom: 0;
  width: 100%;
  height: 80px;
  background: #ffffff;
 /* backdrop-filter: blur(10px);*/
  border: 0.1rem solid #C5CDD2;
  /*border-radius: 0.6rem;*/
  color: #000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  z-index: 9999;
  /*box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.7);*/
}

.player-left, .player-center, .player-right {
  display: flex;
  align-items: center;
}

.album-art {
  height: 60px;
  width: 60px;
  object-fit: cover;
  border-radius: 8px;
  margin-right: 12px;
}

.song-title {
  font-weight: bold;
  font-size: 15px;
}

.artist-name {
  font-size: 13px;
  color: #000;
}

.play-button {
  font-size: 24px;
  background: none;
  border: none;
  color: #000000;
  cursor: pointer;
  margin-right: 10px;
}

.equalizer span {
  display: inline-block;
  width: 4px;
  height: 12px;
  margin: 0 1px;
  background: #0a693c;
  animation: equalize 1s infinite ease-in-out;
  border-radius: 50px;
}

.equalizer span:nth-child(2) { animation-delay: 0.2s; }
.equalizer span:nth-child(3) { animation-delay: 0.4s; }

@keyframes equalize {
  0%, 100% { height: 12px; }
  50% { height: 28px; }
}

.station-logo {
  height: 40px;
  margin-right: 10px;
}

.station-meta div {
  font-size: 13px;
  line-height: 1.2;
}

@media (max-width: 600px) {
  .station-meta, .station-logo {
    display: none;
  }
  .song-title, .artist-name {
    font-size: 12px;
  }
  .album-art {
    height: 50px;
    width: 50px;
  }
}
