/* =========================================================
   La Pipol Broadcast Player v4.1 LTS — Hotfix 01
   Ajuste exclusivo del panel de controles en escritorio:
   - elimina el encabezado CONTROLES;
   - utiliza el espacio recuperado para elevar y centrar botones;
   - mantiene visibles los cuatro LEDs de estado;
   - no altera el diseño responsive para smartphone.
   ========================================================= */
@media (min-width: 768px) {
  .controls-module {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 5px 6px !important;
    overflow: hidden !important;
  }

  .controls-module .transport-grid {
    width: 100% !important;
    height: 106px !important;
    min-height: 106px !important;
    margin: 0 !important;
    padding: 0 !important;
    gap: 5px !important;
    align-items: center !important;
  }

  .controls-module .metal-button {
    height: 102px !important;
    min-height: 102px !important;
    margin: 0 !important;
  }

  .controls-module .metal-button small {
    top: 4px !important;
  }

  .controls-module .metal-button::before {
    top: 27px !important;
    height: 40px !important;
  }

  .controls-module .metal-button::after {
    top: 29px !important;
  }

  .controls-module .metal-button .icon {
    top: 35px !important;
  }

  .controls-module .metal-button .stop {
    top: 38px !important;
  }

  .controls-module .metal-button .pause {
    top: 34px !important;
  }

  .controls-module .metal-button .speaker {
    top: 37px !important;
  }

  .controls-module .metal-button .led {
    bottom: 6px !important;
    width: 11px !important;
    height: 11px !important;
    margin-left: -5.5px !important;
  }
}
/* Hotfix 04: evita múltiples PLAY mientras el stream está conectando. */
.control-btn.is-pending{pointer-events:none;filter:brightness(.88)}
