@charset "utf-8";

/* =====================================================
   BARRA LATERAL – ACORDEÓN REPORTES
   Corregido para funcionar dentro de .hz-sidebar
===================================================== */

/* CONTENEDOR PRINCIPAL DEL ACORDEÓN */
.accordion {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 100%;
    margin: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

/* INPUT TOGGLE OCULTO */
.accordion-toggle {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

/* HEADER DEL ACORDEÓN */
.accordion-header {
    font-size: 15px;
    height: 3em;
    line-height: 3em;
    width: 100%;
    cursor: pointer;
    position: relative;
    padding-left: 36px;
    border: 1px solid #34495E;
    background-color: #001642;
    color: #ECF0F1;
    transition: background-color 0.3s ease;
    margin-bottom: 2px;
    box-sizing: border-box;
}

/* ICONO + / - */
.accordion-header::before {
    content: '+';
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2em;
    color: #ECF0F1;
}

/* ESTADO ABIERTO */
.accordion-toggle:checked + .accordion-header {
    background-color: #09309E;
}

.accordion-toggle:checked + .accordion-header::before {
    content: '-';
}

/* HOVER Y FOCUS */
.accordion-header:hover {
    background-color: #34495E;
}

.accordion-toggle:focus + .accordion-header {
    outline: 2px solid #09309E;
    outline-offset: 2px;
}

/* CONTENIDO DEL ACORDEÓN */
.accordion-content {
    background-color: #F0F7FE;
    color: #2C3E50;
    width: 100%;
    max-height: 0;
    padding: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    box-sizing: border-box;
}

/* CONTENIDO VISIBLE */
.accordion-toggle:checked + .accordion-header + .accordion-content {
    max-height: 2000px;
    padding: 10px 12px;
}

/* LISTAS */
.accordion-content ul {
    list-style: none;
    padding-left: 12px;
    margin: 0;
}

.accordion-content li {
    padding: 6px 0;
    border-bottom: 1px solid #ddd;
}

.accordion-content li:last-child {
    border-bottom: none;
}

/* LINKS */
.accordion-content a {
    color: #2C3E50;
    text-decoration: none;
    transition: color 0.2s ease;
}

.accordion-content a:hover {
    color: #09309E;
    text-decoration: underline;
}

/* FECHA */
.accordion-content .date {
    display: block;
    font-size: 0.8em;
    color: #7f8c8d;
    margin-top: 2px;
}

/* SEGURIDAD EXTRA: EVITA DESBORDES */
.hz-sidebar {
    overflow-x: hidden;
}

/*link de inidce en barra lateral*/

.hz-sidebar-link {
  color: #003366;
  text-decoration: none;
  display: inline-block;
  width: 100%;
}

.hz-sidebar-link:hover {
  text-decoration: underline;
}
