/* ==========================================
   ESTILOS BASE DEL DOCUMENTO
   ========================================== */
body {
  font-family: "Open Sans", sans-serif;
  /* Degradado de fondo que va desde azul cian a gris oscuro */
  background: rgb(37,190,212);
  background: linear-gradient(0deg, rgba(37,190,212,1) 0%, rgba(39,144,159,1) 10%, rgba(40,107,117,1) 25%, rgba(42,74,79,1) 50%, rgba(43,45,46,1) 100%);
  background-attachment: fixed; /* Mantiene el fondo fijo al hacer scroll */
}

/* Enlaces del cuerpo del documento */
body a {
  text-decoration: none; /* Elimina el subrayado por defecto */
}

/* Efecto hover sobre los elementos de menús desplegables de Bootstrap */
.dropdown-item:hover {
  color: black !important;
}

/* ==========================================
   AJUSTES DE CAMPOS DE ENTRADA (INPUTS)
   ========================================== */
/* Oculta las flechas arriba/abajo en los inputs de tipo número en navegadores Webkit (Chrome, Safari, Edge) */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* ==========================================
   COMPONENTES VISUALES
   ========================================== */

/* Galería de imágenes flexible */
.gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

/* Ajuste de las miniaturas dentro de la galería */
.gallery img {
  width: 100%;
  height: auto;
  max-width: 200px;
  cursor: pointer;
}

/* Resaltado de fechas en listas o detalles */
.date-highlight {
  font-size: 1.1rem;
  font-weight: bold;
  background-color: gray;
  padding: 10px 0;
  border-radius: 5px;
  text-align: center;
  text-shadow: 0 0 3px rgba(0, 0, 0, 1);
}

/* ==========================================
   SISTEMA DE PESTAÑAS RESPONSIVAS
   ========================================== */
/* En escritorio se muestran las pestañas (tabs) */
#list-tabs {
  display: flex;
}

/* El selector desplegable (select) se oculta en pantallas grandes */
#list-select {
  display: none;
}

/* Ajustes para pantallas pequeñas (móviles y tablets) */
@media (max-width: 1000px) {
  /* Se ocultan las pestañas y se muestra el selector desplegable */
  #list-tabs {
    display: none;
  }
  #list-select {
    display: block;
    width: 100%; 
  }
}