/* Estilos para el navegador de archivos del admin */

#admin-file-tree {
    font-family: 'Courier New', monospace;
    line-height: 1.0;
    white-space: nowrap;
    margin: 0;
    padding: 0;
}

#admin-file-tree .tree-row {
    display: block;
    margin: 0;
    padding: 0;
    min-height: 16px;
    line-height: 16px;
}

#admin-file-tree .tree-row[data-depth="1"] {
    padding-left: 0px;
}

#admin-file-tree .tree-row[data-depth="2"] {
    padding-left: 15px;
}

#admin-file-tree .tree-row[data-depth="3"] {
    padding-left: 30px;
}

#admin-file-tree .tree-row[data-depth="4"] {
    padding-left: 45px;
}

#admin-file-tree .tree-row[data-depth="5"] {
    padding-left: 60px;
}

#admin-file-tree .folder-row {
    cursor: pointer;
}

#admin-file-tree .file-row {
    cursor: pointer;
}

#admin-file-tree .admin-folder-toggle {
    color: #FFD700 !important;
    text-decoration: none;
    margin-right: 5px;
    display: inline-block;
}

#admin-file-tree .admin-folder-toggle:hover {
    color: #FFA500 !important;
}

#admin-file-tree .admin-folder-toggle i {
    color: #FFD700 !important;
}

#admin-file-tree .admin-folder-toggle:hover i {
    color: #FFA500 !important;
}

#admin-file-tree .admin-folder-link {
    color: #fff !important;
    text-decoration: none;
}

#admin-file-tree .admin-folder-link:hover {
    color: #00FFFF !important;
}

#admin-file-tree .admin-file-link {
    color: #fff !important;
    text-decoration: none;
}

#admin-file-tree .admin-file-link:hover {
    color: #00FFFF !important;
}

#admin-file-tree .admin-folder-root {
    color: #fff !important;
    text-decoration: none;
}

#admin-file-tree .admin-folder-root:hover {
    color: #00FFFF !important;
}

/* Iconos de archivos */
#admin-file-tree .admin-file-link i {
    margin-right: 5px;
    display: inline-block;
}

#admin-file-tree .fa-php {
    color: #777BB4 !important;
}

#admin-file-tree .fa-html5 {
    color: #E34F26 !important;
}

#admin-file-tree .fa-css3-alt {
    color: #1572B6 !important;
}

#admin-file-tree .fa-js-square {
    color: #F7DF1E !important;
}

#admin-file-tree .fa-code {
    color: #6C757D !important;
}

#admin-file-tree .fa-file-alt {
    color: #6C757D !important;
}

#admin-file-tree .fa-file {
    color: #6C757D !important;
}

#admin-file-tree .fa-folder-minus,
#admin-file-tree .fa-folder-plus {
    color: #FFD700 !important;
    margin-right: 3px;
}

/* Scrollbar personalizado */
#admin-file-tree::-webkit-scrollbar {
    width: 6px;
}

#admin-file-tree::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
}

#admin-file-tree::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 3px;
}

#admin-file-tree::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.5);
}

/* Responsive */
@media (max-width: 768px) {
    #admin-file-tree {
        font-size: 11px;
        max-height: 300px;
    }
}
