/* ===============================
   BASE DEL IFRAME (CRÍTICO)
================================ */
html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: transparent;
  font-family: system-ui, Arial, sans-serif;
}

/* ===============================
   CONTENEDOR BARRA (HORIZONTAL)
================================ */
#myn-radio-player {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: row;        /* ← FORZADO HORIZONTAL */
  align-items: center;
  gap: 12px;
  padding: 8px 12px;
  box-sizing: border-box;
  background: #081423;
}

/* ===============================
   PORTADA
================================ */
#cover {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 8px;
  background: #0b4fa3;
  flex-shrink: 0;
}

/* ===============================
   BOTÓN PLAY
================================ */
#playBtn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: none;
  background: #0b4fa3;
  color: #ffffff;
  font-size: 22px;
  cursor: pointer;
  flex-shrink: 0;
}

/* ===============================
   TEXTO
================================ */
#now-playing {
  flex: 1;
  min-width: 0;               /* ← EVITA SALTOS */
  overflow: hidden;
}

#np-artist {
  font-size: 13px;
  font-weight: 600;
  color: #9ecbff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

#np-title {
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ===============================
   LIVE
================================ */
#live {
  font-size: 11px;
  font-weight: 700;
  color: #ff4d4d;
  flex-shrink: 0;
}

/* ===============================
   MOBILE FINO
================================ */
@media (max-width: 480px) {
  #cover {
    width: 48px;
    height: 48px;
  }

  #playBtn {
    width: 46px;
    height: 46px;
    font-size: 20px;
  }
}