/* ==========================================================================
   1. Contenedor Principal
   ========================================================================== */
.gatun_accordeon_wrapper {
  width: 100%;
  max-width: 1000px;
}

/* ==========================================================================
   2. Componente Acordeón (Base y Estados)
   ========================================================================== */
.gatun_accordeon {
  border-bottom: 1px solid #eaeaea;
  padding: 15px 0;
  transition: all 0.3s ease;
}

/* Estado abierto del acordeón */
.gatun_accordeon[open] .gatun_accordeon_summary {
  margin-bottom: 15px;
}

.gatun_accordeon[open] .gatun_accordeon_details {
  opacity: 1;
  transform: translateY(0);
}

.gatun_accordeon[open] .gatun_accordeon_icon::after {
  transform: rotate(90deg);
  opacity: 0;
}

/* ==========================================================================
   3. Elementos Internos del Acordeón
   ========================================================================== */
/* Summary / Cabecera */
.gatun_accordeon_summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  margin: 0;
  padding: 10px 0;
  list-style: none;
  transition: margin 0.3s ease;
}

.gatun_accordeon_summary::-webkit-details-marker {
  display: none;
}

/* Título */
.gatun_accordeon_title {
  color: #0d3b66;
  font-size: 1.75rem;
  font-weight: 500;
}

/* Icono (Más/Menos) */
.gatun_accordeon_icon {
  position: relative;
  width: 16px;
  height: 16px;
  display: inline-block;
}

.gatun_accordeon_icon::before,
.gatun_accordeon_icon::after {
  content: '';
  position: absolute;
  background-color: #0d3b66;
  transition: transform 0.25s ease;
}

.gatun_accordeon_icon::before {
  top: 7px;
  left: 0;
  width: 16px;
  height: 2px;
}

.gatun_accordeon_icon::after {
  top: 0;
  left: 7px;
  width: 2px;
  height: 16px;
}

/* Contenido / Detalles */
.gatun_accordeon_details {
  color: #444;
  opacity: 0;
  transform: translateY(-8px);
  transition:
    opacity 0.5s ease,
    transform 0.5s ease,
    content-visibility 1s allow-discrete;
}

/* ==========================================================================
   4. Lista y Botones de Descarga de Reportes
   ========================================================================== */
.gatun_report_list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.gatun_report_list li a,
.gatun_report_download {
  display: inline-block;
  padding: 8px 16px;
  background-color: #f1f3f5;
  color: #0d3b66;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 500;
  transition: background-color 0.2s ease;
}

.gatun_report_list li a:hover,
.gatun_report_download:hover {
  background-color: #0d3b66;
  color: #ffffff;
}