﻿/* Contenedor Principal tipo ListBox */
.help-tab-list {
    background-color: #fff;
    border: 1px solid #e2e8f0;
    display: none;
    border-radius: 0 0 12px 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    width: 100%; /* Forzar ancho completo del contenedor padre */
}

    .help-tab-list.visible {
        display: flex;
        flex-direction: column; /* Alineación vertical para que todo se apile al 100% */
    }

/* Panel Interno */
.tab-panel.panel-list {
    display: flex;
    flex-direction: column;
    width: 100%; /* Estirar el panel interno */
}

/* Encabezado / Breadcrumb (Alineado a todo el ancho) */
.txt-breadcrumb {
    display: flex;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
    padding: 12px 18px;
    font-size: .82rem;
    font-weight: 600;
    line-height: 1;
    color: #475569;
    background: #fff;
    border-bottom: 1px solid #edf2f7;
    letter-spacing: .01em;
    user-select: none;
}

/* Lista de Resultados */
.directory-list {
    list-style: none;
    margin: 0;
    padding: 0;
    width: 100%; /* Forzar a la lista ocupar el 100% */
}

/* Filas continuas que ocupan todo el ancho */
.directory-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%; /* Cada fila ocupa el 100% exacto */
    box-sizing: border-box;
    padding: 12px 16px;
    font-size: 0.9rem;
    color: #334155;
    cursor: pointer;
    border-bottom: 1px solid #f1f5f9;
    transition: background-color 0.15s ease, color 0.15s ease;
}

    .directory-item:last-child {
        border-bottom: none;
    }





/* Contenido de la Fila (Icono + Texto) */
.item-content {
    display: flex;
    align-items: center;
    gap: 10px;
}

.item-icon {
    width: 18px;
    height: 18px;
    fill: currentColor;
    opacity: 0.7;
}

/* Badge o Etiqueta secundaria */
.item-badge {
    font-size: 0.75rem;
    padding: 2px 8px;
    border-radius: 12px;
    
    background-color: transparent;
    color: #475569;
}


