body {
    font-family: Arial, sans-serif;
    background: #f9f9f9;
    margin: 0;
}

.contenedor {
    width: 100%;
    max-width: 960px;
    margin: 30px auto;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    padding: 20px;
    text-align: left;
}

.header {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    background: #009fe3;
    padding: 10px 20px;
    color: white;
    border-radius: 6px;
    gap: 20px; /* espacio entre texto y buscador */
}

#buscador {
    padding: 6px;
    border-radius: 4px;
    border: none;
    outline: none;
}

#explorador {
    
    margin-top: 20px;
    text-align: left;
}



.descargar-icono {
    margin-left: 8px;
    color: #0077cc;
    text-decoration: none;
    font-size: 16px;
}

.descargar-icono::after {
    content: '⬇️';
}


/* Estilo visual para carpetas */
.jstree-folder > .jstree-anchor {
    font-weight: bold;
    color: #000000;
}

/* Estilo para archivos PDF */
.jstree-file[data-extension="pdf"] > .jstree-anchor {
    color: #c62828;
}

/* Estilo para Word */
.jstree-file[data-extension="doc"], 
.jstree-file[data-extension="docx"] > .jstree-anchor {
    color: #1976d2;
}

/* Estilo para Excel */
.jstree-file[data-extension="xls"], 
.jstree-file[data-extension="xlsx"] > .jstree-anchor {
    color: #2e7d32;
}

/* Estilo general para otros archivos */
.jstree-file > .jstree-anchor {
    font-weight: normal;
}


#explorador > ul > li > .jstree-anchor {
    padding-left: 10px;
    font-weight: bold;
    background: none; /* Cambiar el fondo a ninguno */
    border-left: 5px solid #009fe3;
    margin-bottom: 0; /* Eliminar el margen inferior */
    display: block;
}


/* Subcarpeta dentro del año */
#explorador li li > .jstree-anchor {
    padding-left: 30px;
    color: #005099;
    font-weight: bold;
}

/* Archivos dentro de subcarpeta */
#explorador li li li > .jstree-anchor {
    padding-left: 50px;
    color: #006aff;
    font-weight: normal;
}

#explorador li li li li > .jstree-anchor {
    padding-left: 70px;
    color: #c62828;
    font-weight: normal;
}

.descargar-icono {
    margin-left: 8px;
    color: #0077cc;
    text-decoration: none;
    font-size: 16px;
}

.descargar-icono::after {
    content: '⬇️';
}

.jstree-node {
    margin-left: 0 !important;
}
.jstree-open > .jstree-anchor > .jstree-icon {
    background-image: url('https://cdn.jsdelivr.net/gh/pointhi/leaflet-color-markers/img/folder-open.png');
    background-size: 16px 16px;
}

.jstree-closed > .jstree-anchor > .jstree-icon {
    background-image: url('https://cdn.jsdelivr.net/gh/pointhi/leaflet-color-markers/img/folder.png');
    background-size: 16px 16px;
}
