/* ==========================================================================
   LISTAS GLOBALES – SIGv
   Listados unificados con estilos Material Premium
   Usadas para: documentos, notificaciones, acciones rápidas, etc.
   ========================================================================== */

ul,
ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

/* ============================================================
   LISTA BÁSICA
   Igual a la que usas en Documentos Principales de index.php
============================================================ */

.lista {
    padding: 0;
    margin: 0;
}

.lista li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 6px;
    border-bottom: 1px solid #e8e8e8;
    transition: background 0.15s ease;
}

.lista li:last-child {
    border-bottom: none;
}

.lista li:hover {
    background: rgba(0,0,0,0.03);
}

.lista a {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--color-text, #333);
    font-weight: 600;
    transition: color 0.2s ease;
}

.lista a:hover {
    color: var(--color-vino);
}

.lista .icono {
    font-size: 20px;
}

/* ============================================================
   LISTA CON ICONOS GRANDES – estilo “Documento”
============================================================ */

.lista-docs {
    padding: 0;
    margin: 0;
}

.lista-docs li {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 6px;
    border-bottom: 1px solid #e4e4e4;
}

.lista-docs li:last-child {
    border-bottom: none;
}

.lista-docs .icon-big {
    font-size: 26px;
    color: var(--color-vino);
    flex-shrink: 0;
}

.lista-docs .titulo {
    font-size: 16px;
    font-weight: 600;
    color: var(--color-text);
}

.lista-docs .sub {
    font-size: 12px;
    color: #777;
}

/* ============================================================
   LISTA INTERACTIVA – seleccionable y clicable
   Ideal para seleccionar activos, categorías, personas, etc.
============================================================ */

.lista-interactiva {
    padding: 0;
}

.lista-interactiva li {
    padding: 12px 16px;
    background: white;
    border-radius: 10px;
    margin-bottom: 10px;
    border: 1px solid #eee;
    cursor: pointer;
    transition: 
        background 0.15s ease, 
        border-color 0.2s ease,
        transform 0.12s ease;
}

.lista-interactiva li:hover {
    background: #fafafa;
    border-color: var(--color-verde);
}

.lista-interactiva li:active {
    transform: scale(0.98);
}

.lista-interactiva li.activo {
    background: #e8f9f4;
    border-color: var(--color-verde);
}

/* ============================================================
   LISTA ESTILO “MATERIAL” CON SEPARADORES SUAVES
   Ideal para menús o listados simples
============================================================ */

.lista-material li {
    padding: 12px 0;
    border-bottom: 1px solid #efefef;
}

.lista-material li:last-child {
    border-bottom: none;
}

.lista-material a {
    text-decoration: none;
    color: var(--color-text);
    font-weight: 500;
}

.lista-material a:hover {
    color: var(--color-vino);
}
