@charset "utf-8";
/* CSS Document */

#rphfm-player {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 70px;
  z-index: 99999;
  background-image: url("https://rphfm.org/wp-content/uploads/2021/09/cropped-RPH-FM_Standard_V1.0_FondSite.jpg");
  background-size: cover;
  background-position: center;
  box-shadow: 0 2px 6px rgba(0,0,0,.35);
  display: flex;
  align-items: center;
}

.rphfm-inner {
  width: 100%;
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 0 20px;
}

.rphfm-logo { height: 50px; }

#rphfm-playpause {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  background: white;
  position: relative;
}

#rphfm-playpause.paused::before {
  content: '';
  position: absolute;
  left: 16px;
  top: 11px;
  border-left: 14px solid #0056ff;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
}

#rphfm-playpause.playing::before {
  content: '';
  position: absolute;
  left: 14px;
  top: 10px;
  width: 6px;
  height: 22px;
  background: #0056ff;
  box-shadow: 10px 0 0 #0056ff;
}

.rphfm-label {
  color: white;
  font-weight: bold;
  font-size: 18px;
}

#rphfm-nowplaying {
  color: white;
  font-size: 15px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 400px;
}

@media (max-width: 600px) {
  .rphfm-label,
  #rphfm-nowplaying {
    display: none;
  }
}