/* === NORMALIZACIÓN GLOBAL === */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* === TIPOGRAFÍA Y FONDO GLOBAL === */
html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: 'Segoe UI', 'Segoe UI Symbol', 'Roboto', sans-serif;
  background-image: url('../img/panel/wallpaper.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  overflow: hidden;
}

/* === CONTENEDOR PRINCIPAL === */
main.contenedor-principal {
  padding: 40px;
  overflow-y: auto;
  height: calc(100vh - 56px);
  /* Fallback para navegadores antiguos */
}

@supports (height: 100dvh) {
  main.contenedor-principal {
    height: calc(100dvh - 56px);
    /* Altura real en móviles modernos */
  }
}

/* === VENTANA ADAPTADA AL CONTENEDOR === */
.ventana-ajustada {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}

/* === CUERPO DE LA VENTANA CON SCROLL INTERNO === */
.ventana-ajustada .window-body {
  flex: 1;
  overflow-y: auto;
  padding: 12px 16px;
}

/* === ICONO Y TEXTO DE LA BARRA DE TÍTULO === */
.title-bar-text {
  display: flex;
  align-items: center;
  gap: 6px;
}

.title-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* === BOTONES PERSONALIZADOS DE LA VENTANA === */
.custom-btn {
  all: unset;
  display: inline-block;
  font-family: 'Segoe UI', 'Segoe UI Symbol', sans-serif;
  font-weight: bold;
  font-size: 12px;
  line-height: 14px;
  text-align: center;
  color: white;
  text-shadow: 1px 1px 0 #000;
  cursor: pointer;
}

/* Contenedor gris que envuelve el listado */
.ventana-ajustada .window-body {
  overflow-x: auto;
  /* permite scroll horizontal si es necesario */
  word-break: break-word;
  /* rompe enlaces largos */
}

/* Asegura que los <li> no se desborden */
ul.tree-view.listado-programas li {
  max-width: 100%;
  overflow-wrap: break-word;
  word-break: break-word;
}

/* Enlaces dentro del <li> */
ul.tree-view.listado-programas li a {
  display: block;
  max-width: 100%;
  white-space: normal;
}

/* === ENLACES LISTADO PROGRAMAS === */
ul.tree-view.listado-programas a {
  color: #007BFF !important;
  text-decoration: underline !important;
}

/* === TEXTO LISTADO PROGRAMAS === */
.listado-programas {
  transition: font-size 0.2s ease-in-out;
}

/* === BARRA INFERIOR ESTILO WINDOWS 7 === */
footer.mdl-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 46px;
  background: linear-gradient(to top, #6c7a89 0%, #a0aab5 50%, #d0d6dd 100%);
  border-top: 1px solid #e4e7ea;
  border-bottom: 1px solid #4a4f56;
  box-shadow:
    inset 1px 1px 0 #ffffff,
    inset -1px -1px 0 #4a4f56;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 8px;
  font-family: 'Segoe UI', sans-serif;
  font-size: 0.85rem;
  color: black;
  text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.4);
  z-index: 1000;
}

/* === CONTENIDO IZQUIERDO DE LA BARRA INFERIOR === */
.footer-left {
  position: relative;
  display: flex;
  align-items: center;
}

/* === BOTÓN DE MENÚ CUADRADO === */
#menu-btn {
  width: 32px;
  height: 32px;
  padding: 0;
  border: none;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
  min-width: 0;
  font-size: 0;
  transition: background-color 0.2s ease-in-out;
}

#menu-btn .menu-icon {
  width: 24px;
  height: 24px;
}

#menu-btn:hover,
#menu-btn:focus {
  background-color: rgba(0, 0, 0, 0.1);
}

/* === ICONOS ADICIONALES EN LA BARRA === */
.menu-icon {
  width: 24px;
  height: 24px;
}

.label-icon {
  width: 30px;
  height: 30px;
  display: block;
  margin-left: 2px;
}

/* === MENÚ DESPLEGABLE ESTILO WINDOWS 7 === */
.mdl-menu {
  position: relative;
  width: 0px;
  background-color: #d4d4d4;
  border: 1px solid #808080;
  box-shadow:
    inset 1px 1px 0 #fff,
    inset -1px -1px 0 #808080;
  font-family: 'Segoe UI', sans-serif;
  font-size: 0.85rem;
  padding: 4px 0;
  z-index: 1001;
}

.mdl-menu::before {
  content: "";
  position: absolute;
  top: 4px;
  bottom: 4px;
  left: 42px;
  width: 1px;
  background-color: #c0c0c0;
  box-shadow:
    inset 1px 0 0 #ffffff,
    inset -1px 0 0 #808080;
  z-index: 1;
}

/* Ítems del menú como contenedor neutro */
.mdl-menu__item {
  padding: 0;
  margin: 0;
}

/* Enlace que hereda el estilo completo del ítem */
.mdl-menu__item a {
  display: flex;
  align-items: center;
  gap: 12px;
  color: black;
  text-decoration: none;
  padding: 6px 12px;
  white-space: nowrap;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  position: relative;
  z-index: 2;
  font-weight: normal;
}

/* Iconos dentro del enlace */
.mdl-menu__item a img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  flex-shrink: 0;
}

/* Hover sobre el enlace */
.mdl-menu__item a:hover {
  background-color: #dcdcdc;
  border: 1px solid #a0a0a0;
  box-shadow:
    inset 1px 1px 0 #ffffff,
    inset -1px -1px 0 #808080;
  margin: -1px;
  z-index: 2;
}

/* Ítem activo */
.mdl-menu__item.menu-active a {
  font-weight: bold;
  background-color: #e0e0e0;
  border: 1px solid #a0a0a0;
  box-shadow:
    inset 1px 1px 0 #ffffff,
    inset -1px -1px 0 #808080;
  margin: -1px;
}

/* === CONTENEDOR DE RELOJ + ICONO WI-FI === */
.win7-clock-container {
  display: flex;
  align-items: center;
  gap: 8px;
}

.wifi-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* === RELOJ ESTILO WIN7 === */
.win7-clock {
  color: white;
  font-family: 'Segoe UI', sans-serif;
  font-size: 0.75rem;
  line-height: 1.2;
  text-align: center;
  white-space: pre-line;
  text-shadow: 1px 1px 0 #000;
  padding-right: 8px;
}

/* === PIE DE VENTANA / ESTADO === */
.status-bar {
  background-color: #fff;
  border-top: 1px solid #a0a0a0;
  padding: 4px 8px;
  font-size: 0.9rem;
  box-shadow: inset 1px 1px 0 #fff, inset -1px -1px 0 #808080;
}

.status-bar-field {
  border: none !important;
}

/* === ENCABEZADOS REDUCIDOS PERSONALIZADOS === */

/* Encabezado reducido principal: ligeramente más grande */
.heading-reduced-lg {
  font-size: 1.05rem;
  font-weight: bold;
  margin: 1.1em 0 0.6em;
  line-height: 1.4;
}

/* Encabezado reducido secundario: más compacto */
.heading-reduced-sm {
  font-size: 0.95rem;
  font-weight: bold;
  margin: 0.9em 0 0.5em;
  line-height: 1.3;
}

/* === BADGE PARA CONTADORES Y ETIQUETAS NEUTRAS === */
.badge-sober {
  display: inline-block;
  padding: 2px 8px;
  font-size: 0.75rem;
  font-weight: bold;
  color: #333;
  background-color: #e0e0e0;
  border-radius: 999px;
  border: 1px solid #b0b0b0;
  box-shadow:
    inset 1px 1px 0 #ffffff,
    inset -1px -1px 0 #c0c0c0;
  vertical-align: middle;
  line-height: 1.2;
}

/* === AJUSTES PARA COMPATIBILIDAD MÓVIL === */

/* Asegura que el contenido principal se adapte al alto real del viewport */
@supports (height: 100dvh) {
  main.contenedor-principal {
    height: calc(100dvh - 56px);
  }
}

/* Evita solapamiento del contenido con el footer en móviles */
@media screen and (max-width: 768px) {
  main.contenedor-principal {
    padding-bottom: 56px;
    /* espacio extra para footer fijo */
  }
}

/* Corrige posibles problemas de scroll en móviles */
body {
  overscroll-behavior-y: contain;
  -webkit-overflow-scrolling: touch;
}

/* === CONTENEDOR PRINCIPAL DEL REPRODUCTOR DE RADIO === */
.winamp-audio {
  margin: 2rem auto;
  /* Centrado horizontal con margen superior */
  width: 100%;
  max-width: 420px;
  /* Limita el ancho para mantener proporción */
  font-family: 'Arial', sans-serif;
  /* Fuente neutra y legible */
}

/* === MARCO DEL REPRODUCTOR CON ESTILO RETRO === */
.winamp-frame {
  background: linear-gradient(to bottom, #c0c0c0, #a0a0a0);
  /* Fondo metálico estilo Winamp */
  border: 2px solid #000;
  /* Borde negro definido */
  box-shadow: 4px 4px 0 #333;
  /* Sombra exterior tipo relieve */
  padding: 1rem;
  overflow: visible;
  /* Permite que los elementos internos se expandan */
  position: relative;
  z-index: 1;
}

/* === CABECERA DEL REPRODUCTOR === */
.winamp-header {
  background: linear-gradient(to right, #000080, #0000cd);
  /* Azul profundo estilo clásico */
  color: #fff;
  font-weight: bold;
  padding: 0.3rem 0.5rem;
  margin-bottom: 1rem;
  text-align: center;
  border: 1px solid #000;
  box-shadow: 4px 4px 0 #333;
  /* Sombra para efecto de profundidad */
}

/* === PIE DEL REPRODUCTOR === */
.winamp-footer {
  text-align: center;
  margin-top: 1rem;
}

/* === ELEMENTO AUDIO CENTRADO === */
audio {
  margin: 1rem auto 0 auto;
  /* Margen superior + centrado horizontal */
  display: block;
  width: 90%;
  /* Ajuste responsivo */
}

/* === VISUALIZADOR DE AUDIO (ANALIZADOR) === */
#analyzer_render {
  display: block;
  margin: 0 auto 0 auto;
  /* Centrado horizontal */
  width: 100%;
  max-width: 400px;
  height: 100px;
  border: 2px solid #000;
  box-shadow: inset 0 0 4px #0f0;
  /* Sombra interna verde tipo ecualizador */
  background-color: #002D3C;
  /* Fondo oscuro estilo consola */
}

/* === INFORMACIÓN DE LA EMISORA === */
fieldset.info-emisora {
  margin-top: 1rem;
  border: 2px solid #000;
  /* Borde negro definido */
  padding: 1rem;
  border-radius: 4px;
  /* Esquinas redondeadas suaves */
}

/* === CONTENIDO DE LA EMISORA: IMAGEN + DATOS === */
.info-emisora-contenido {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 1rem;
}

.info-emisora-img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  flex-shrink: 0;
}

.info-emisora-datos {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.3rem;
}

/* === SELECTOR DE EMISORA === */
label,
select {
  display: block;
  margin-bottom: 1rem;
  width: 100%;
  max-width: 400px;
  font-family: inherit;
  font-size: 1rem;
}

select {
  padding: 0.4rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  background-color: #fff;
  position: relative;
  z-index: 2;
}

label {
  font-weight: bold;
  margin-top: 1rem;
  margin-bottom: 0.1rem;
}
