/* Estilos para el encabezado del listado del mirror (autoindex) */
/* Estilos para el encabezado del Mirror */
        .mirror-header {
            text-align: center;
            padding: 3rem 0;
            background-color: var(--color-bg-secondary);
            border-radius: 0;
            margin-bottom: 2rem;
        }

        .mirror-header h1 {
            margin-bottom: 1rem;
            font-size: 2.5rem;
        }

        .mirror-header p {
            font-size: 1.25rem;
            max-width: 700px;
            margin: 0 auto;
            color: var(--color-text-secondary);
        }
        
        /* Estilos para el título del explorador */
        .explorer-title {
            color: var(--color-text);
            margin-bottom: 0.75rem;
            font-size: 1.75rem;
            font-weight: bold;
            position: relative;
            padding-bottom: 0.25rem;
        }
        
        .explorer-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 3px;
            background-color: var(--color-primary);
        }
        
        /* Ruta actual */
        .current-path {
            margin-bottom: 1rem;
            color: var(--color-text-secondary);
            font-size: 0.9rem;
        }
        
        /* Estilo para quitar el índice "Index of" que Nginx genera */
        h1:first-of-type {
            display: none;
        }
        
        /* Estilos para las tablas de autoindex */
        table {
            width: 100%;
            border-collapse: collapse;
            margin-bottom: 2rem;
            background-color: transparent;
        }
        
        th {
            text-align: left;
            padding: 0.5rem 1rem;
            background-color: transparent;
            color: var(--color-text);
            font-weight: 600;
            border-bottom: 1px solid var(--color-border);
        }
        
        td {
            padding: 0.5rem 1rem;
            border-bottom: 1px solid var(--color-border);
        }
        
        tr:hover td {
            background-color: rgba(255, 255, 255, 0.05);
        }
        
        /* Colores e iconos para los enlaces */
        a {
            color: var(--color-text);
            transition: color 0.2s;
        }
        
        a:hover {
            color: var(--color-primary);
        }
        
        /* Iconos para diferentes tipos de archivo */
        a[href$="/"] {
            color: var(--color-primary);
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="%230099ff" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M22 19a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h5l2 3h9a2 2 0 0 1 2 2z"></path></svg>') no-repeat left center;
            padding-left: 22px;
        }
