       /* ===============================
           GLOBAL RESET
        ================================ */
        *, *::before, *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        :root {
            --bg-primary: #09090b;
            --bg-secondary: #18181b;
            --bg-card: rgba(24, 24, 27, 0.6);
            --border-color: rgba(63, 63, 70, 0.4);
            --border-hover: rgba(161, 161, 170, 0.3);
            --text-primary: #fafafa;
            --text-secondary: #a1a1aa;
            --text-muted: #71717a;
            --accent: #3b82f6;
            --accent-hover: #60a5fa;
            --accent-glow: rgba(59, 130, 246, 0.5);
            --purple: #8b5cf6;
            --cyan: #06b6d4;
            --emerald: #10b981;
            --rose: #f43f5e;
            --radius: 12px;
            --radius-lg: 16px;
            --radius-xl: 24px;
        }

        /* ===============================
           BACKGROUND — Aceternity Aurora
        ================================ */
        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            background: var(--bg-primary);
            color: var(--text-primary);
            min-height: 100vh;
            overflow-x: hidden;
            position: relative;
        }

        /* Aurora gradient blobs */
        .aurora {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
            pointer-events: none;
            overflow: hidden;
        }

        .aurora::before,
        .aurora::after {
            content: '';
            position: absolute;
            border-radius: 50%;
            filter: blur(120px);
            opacity: 0.3;
            animation: aurora-drift 15s ease-in-out infinite alternate;
        }

        .aurora::before {
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, var(--purple), transparent 70%);
            top: -200px;
            left: -100px;
        }

        .aurora::after {
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, var(--accent), transparent 70%);
            bottom: -150px;
            right: -100px;
            animation-delay: -5s;
            animation-duration: 18s;
        }

        .aurora-extra {
            position: fixed;
            width: 400px;
            height: 400px;
            border-radius: 50%;
            filter: blur(100px);
            opacity: 0.2;
            background: radial-gradient(circle, var(--cyan), transparent 70%);
            top: 40%;
            left: 50%;
            transform: translate(-50%, -50%);
            animation: aurora-drift-2 20s ease-in-out infinite alternate;
            pointer-events: none;
            z-index: 0;
        }

        @keyframes aurora-drift {
            0% { transform: translate(0, 0) scale(1); }
            33% { transform: translate(80px, 40px) scale(1.1); }
            66% { transform: translate(-40px, 80px) scale(0.95); }
            100% { transform: translate(60px, -30px) scale(1.05); }
        }

        @keyframes aurora-drift-2 {
            0% { transform: translate(-50%, -50%) scale(1); opacity: 0.15; }
            50% { transform: translate(-30%, -60%) scale(1.2); opacity: 0.25; }
            100% { transform: translate(-60%, -40%) scale(0.9); opacity: 0.18; }
        }

        /* ===============================
           DOT GRID — MagicUI Pattern
        ================================ */
        .dot-grid {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
            pointer-events: none;
            background-image: radial-gradient(
                rgba(255, 255, 255, 0.05) 1px,
                transparent 1px
            );
            background-size: 24px 24px;
            mask-image: radial-gradient(ellipse 60% 60% at 50% 50%, black 40%, transparent 100%);
            -webkit-mask-image: radial-gradient(ellipse 60% 60% at 50% 50%, black 40%, transparent 100%);
        }

        /* ===============================
           SPOTLIGHT — Cursor Tracker
        ================================ */
        .spotlight {
            position: fixed;
            width: 600px;
            height: 600px;
            border-radius: 50%;
            background: radial-gradient(
                circle,
                rgba(59, 130, 246, 0.06) 0%,
                transparent 70%
            );
            pointer-events: none;
            z-index: 1;
            transform: translate(-50%, -50%);
            transition: left 0.3s ease, top 0.3s ease;
        }

        /* ===============================
           MAIN CONTAINER
        ================================ */
        .container {
            position: relative;
            z-index: 2;
            max-width: 1100px;
            margin: 0 auto;
            padding: 40px 20px;
        }

        /* ===============================
           PAGE HEADER — ShadcnUI Style
        ================================ */
        .page-header {
            text-align: center;
            margin-bottom: 48px;
        }

        .badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 6px 14px;
            border-radius: 999px;
            border: 1px solid var(--border-color);
            background: rgba(59, 130, 246, 0.08);
            color: var(--accent-hover);
            font-size: 12px;
            font-weight: 500;
            letter-spacing: 0.5px;
            margin-bottom: 20px;
            animation: fade-in-up 0.6s ease both;
        }

        .badge .dot {
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: var(--accent);
            animation: pulse-dot 2s ease-in-out infinite;
        }

        @keyframes pulse-dot {
            0%, 100% { opacity: 1; transform: scale(1); }
            50% { opacity: 0.5; transform: scale(0.8); }
        }

        h1 {
            font-size: clamp(2rem, 5vw, 3.2rem);
            font-weight: 800;
            letter-spacing: -0.03em;
            line-height: 1.1;
            margin-bottom: 12px;
            animation: fade-in-up 0.6s ease 0.1s both;
            background: linear-gradient(
                135deg,
                var(--text-primary) 0%,
                var(--text-secondary) 50%,
                var(--text-primary) 100%
            );
            background-size: 200% 200%;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: fade-in-up 0.6s ease 0.1s both, shimmer 6s ease-in-out infinite;
        }

        @keyframes shimmer {
            0%, 100% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
        }

        .subtitle {
            color: var(--text-muted);
            font-size: 16px;
            font-weight: 400;
            animation: fade-in-up 0.6s ease 0.2s both;
        }

        @keyframes fade-in-up {
            from {
                opacity: 0;
                transform: translateY(16px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* ===============================
           STATS BAR
        ================================ */
        .stats-bar {
            display: flex;
            gap: 12px;
            margin-bottom: 24px;
            justify-content: center;
            flex-wrap: wrap;
            animation: fade-in-up 0.6s ease 0.3s both;
        }

        .stat-card {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 12px 20px;
            border-radius: var(--radius);
            border: 1px solid var(--border-color);
            background: var(--bg-card);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            transition: all 0.3s ease;
        }

        .stat-card:hover {
            border-color: var(--border-hover);
            transform: translateY(-2px);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
        }

        .stat-icon {
            width: 36px;
            height: 36px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
        }

        .stat-icon.blue { background: rgba(59, 130, 246, 0.15); color: #60a5fa; }
        .stat-icon.purple { background: rgba(139, 92, 246, 0.15); color: #a78bfa; }
        .stat-icon.emerald { background: rgba(16, 185, 129, 0.15); color: #34d399; }
        .stat-icon.rose { background: rgba(244, 63, 94, 0.15); color: #fb7185; }

        .stat-info {
            display: flex;
            flex-direction: column;
        }

        .stat-value {
            font-size: 18px;
            font-weight: 700;
            color: var(--text-primary);
        }

        .stat-label {
            font-size: 11px;
            color: var(--text-muted);
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        /* ===============================
           SEARCH & TOOLBAR
        ================================ */
        .toolbar {
            display: flex;
            gap: 12px;
            margin-bottom: 20px;
            align-items: center;
            flex-wrap: wrap;
            animation: fade-in-up 0.6s ease 0.35s both;
        }

        .search-wrapper {
            flex: 1;
            min-width: 200px;
            position: relative;
        }

        .search-icon {
            position: absolute;
            left: 14px;
            top: 50%;
            transform: translateY(-50%);
            color: var(--text-muted);
            pointer-events: none;
        }

        .search-input {
            width: 100%;
            padding: 10px 14px 10px 42px;
            border-radius: var(--radius);
            border: 1px solid var(--border-color);
            background: var(--bg-card);
            backdrop-filter: blur(12px);
            color: var(--text-primary);
            font-size: 14px;
            font-family: inherit;
            outline: none;
            transition: all 0.2s ease;
        }

        .search-input::placeholder {
            color: var(--text-muted);
        }

        .search-input:focus {
            border-color: var(--accent);
            box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15);
        }

        .btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 10px 18px;
            border-radius: var(--radius);
            border: 1px solid var(--border-color);
            background: var(--bg-card);
            backdrop-filter: blur(12px);
            color: var(--text-secondary);
            font-size: 13px;
            font-weight: 500;
            font-family: inherit;
            cursor: pointer;
            transition: all 0.2s ease;
            white-space: nowrap;
        }

        .btn:hover {
            border-color: var(--border-hover);
            color: var(--text-primary);
            background: rgba(39, 39, 42, 0.8);
        }

        .btn-primary {
            background: var(--accent);
            border-color: var(--accent);
            color: white;
        }

        .btn-primary:hover {
            background: var(--accent-hover);
            border-color: var(--accent-hover);
            color: white;
            box-shadow: 0 0 20px var(--accent-glow);
        }

        /* ===============================
           TABLE CARD — Glass Morphism
        ================================ */
        .table-card {
            border-radius: var(--radius-lg);
            border: 1px solid var(--border-color);
            background: var(--bg-card);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            overflow: hidden;
            animation: fade-in-up 0.6s ease 0.4s both;
            position: relative;
        }

        /* Animated gradient border on top */
        .table-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(
                90deg,
                transparent,
                var(--accent),
                var(--purple),
                var(--cyan),
                transparent
            );
            background-size: 200% 100%;
            animation: border-flow 4s linear infinite;
        }

        @keyframes border-flow {
            0% { background-position: 200% 0; }
            100% { background-position: -200% 0; }
        }

        /* ===============================
           TABLE
        ================================ */
        table {
            width: 100%;
            border-collapse: collapse;
            background: transparent;
            box-shadow: none;
            border-radius: 0;
            margin: 0;
            max-width: none;
        }

        /* ===============================
           TABLE HEADER
        ================================ */
        thead {
            position: sticky;
            top: 0;
            z-index: 10;
        }

        th {
            padding: 14px 20px;
            text-align: left;
            font-size: 12px;
            font-weight: 600;
            color: var(--text-muted);
            text-transform: uppercase;
            letter-spacing: 0.8px;
            background: rgba(9, 9, 11, 0.8);
            backdrop-filter: blur(8px);
            border-bottom: 1px solid var(--border-color);
            cursor: pointer;
            transition: color 0.2s ease;
            user-select: none;
            white-space: nowrap;
        }

        th:hover {
            color: var(--text-secondary);
        }

        th .sort-icon {
            display: inline-block;
            margin-left: 4px;
            opacity: 0.3;
            transition: opacity 0.2s;
        }

        th:hover .sort-icon {
            opacity: 0.7;
        }

        /* ===============================
           TABLE ROWS
        ================================ */
        td {
            padding: 14px 20px;
            font-size: 14px;
            color: var(--text-secondary);
            border-bottom: 1px solid rgba(63, 63, 70, 0.2);
            transition: all 0.15s ease;
        }

        tr {
            transition: all 0.15s ease;
            position: relative;
        }

        tbody tr:hover {
            background: rgba(59, 130, 246, 0.04);
        }

        tbody tr:hover td {
            color: var(--text-primary);
        }

        /* Left accent line on hover */
        tbody tr::after {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 2px;
            background: var(--accent);
            opacity: 0;
            transition: opacity 0.2s ease;
   	    pointer-events: none;
        }

        tbody tr:hover::after {
            opacity: 1;
        }

        /* Last row no border */
        tbody tr:last-child td {
            border-bottom: none;
        }

        /* ===============================
           FILE NAME CELL
        ================================ */
       .file-cell {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer; /* ? helps visually */
}

        .file-icon {
            width: 36px;
            height: 36px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
            flex-shrink: 0;
            transition: all 0.2s ease;
        }

        .file-icon.folder {
            background: rgba(59, 130, 246, 0.12);
            color: #60a5fa;
        }

        .file-icon.image {
            background: rgba(139, 92, 246, 0.12);
            color: #a78bfa;
        }

        .file-icon.document {
            background: rgba(16, 185, 129, 0.12);
            color: #34d399;
        }

        .file-icon.code {
            background: rgba(244, 63, 94, 0.12);
            color: #fb7185;
        }

        .file-icon.archive {
            background: rgba(245, 158, 11, 0.12);
            color: #fbbf24;
        }

        .file-icon.media {
            background: rgba(6, 182, 212, 0.12);
            color: #22d3ee;
        }

        .file-icon.default {
            background: rgba(113, 113, 122, 0.12);
            color: #a1a1aa;
        }

        tr:hover .file-icon {
            transform: scale(1.08);
        }

        .file-info {
            display: flex;
            flex-direction: column;
            min-width: 0;
        }

        .file-name {
            font-weight: 500;
            color: var(--text-primary);
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .file-meta {
            font-size: 12px;
            color: var(--text-muted);
            margin-top: 2px;
        }

	.file-info a {
          display: block;
    	  color: var(--text-primary);
    	  font-weight: 500;
   	  white-space: nowrap;
  	  overflow: hidden;
   	  text-overflow: ellipsis;
	}
	
.file-info a.file-name {
    display: block;
    color: var(--text-primary);
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-decoration: none;
}

td:first-of-type a {
    pointer-events: auto;
}

        /* ===============================
           LINKS
        ================================ */
        a {
            color: var(--text-primary);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.2s ease;
        }

        a:hover {
            color: var(--accent-hover);
        }

        /* ===============================
           SIZE BADGE
        ================================ */
        .size-badge {
            display: inline-flex;
            padding: 4px 10px;
            border-radius: 6px;
            background: rgba(63, 63, 70, 0.3);
            font-size: 12px;
            font-weight: 500;
            color: var(--text-secondary);
            font-variant-numeric: tabular-nums;
        }

        /* ===============================
           DATE
        ================================ */
        .date-text {
            color: var(--text-muted);
            font-variant-numeric: tabular-nums;
            font-size: 13px;
        }

        /* ===============================
           ACTIONS
        ================================ */
        .action-btn {
            width: 32px;
            height: 32px;
            border-radius: 8px;
            border: 1px solid transparent;
            background: transparent;
            color: var(--text-muted);
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            transition: all 0.2s ease;
            font-size: 14px;
        }

        .action-btn:hover {
            border-color: var(--border-color);
            background: rgba(63, 63, 70, 0.3);
            color: var(--text-primary);
        }

        /* ===============================
           PARENT DIRECTORY ROW
        ================================ */
        .parent-row td {
            color: var(--text-muted);
        }

        .parent-row:hover td {
            color: var(--text-secondary);
        }

        /* ===============================
           EMPTY STATE
        ================================ */
        .empty-state {
            text-align: center;
            padding: 60px 20px;
            color: var(--text-muted);
        }

        .empty-state .empty-icon {
            font-size: 48px;
            margin-bottom: 16px;
            opacity: 0.3;
        }

        .empty-state p {
            font-size: 14px;
        }

        /* ===============================
           FOOTER
        ================================ */
        .footer {
            text-align: center;
            padding: 32px 20px;
            color: var(--text-muted);
            font-size: 12px;
            animation: fade-in-up 0.6s ease 0.5s both;
        }

        .footer a {
            color: var(--text-muted);
            font-weight: 400;
        }

        .footer a:hover {
            color: var(--accent-hover);
        }

        .footer-divider {
            width: 48px;
            height: 1px;
            background: var(--border-color);
            margin: 0 auto 16px;
        }

        /* ===============================
           SCROLLBAR
        ================================ */
        ::-webkit-scrollbar {
            width: 6px;
        }

        ::-webkit-scrollbar-track {
            background: transparent;
        }

        ::-webkit-scrollbar-thumb {
            background: rgba(63, 63, 70, 0.5);
            border-radius: 3px;
        }

        ::-webkit-scrollbar-thumb:hover {
            background: rgba(113, 113, 122, 0.5);
        }

        /* ===============================
           PARTICLES — MagicUI Sparkle
        ================================ */
        .particles {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
            pointer-events: none;
        }

        .particle {
            position: absolute;
            width: 2px;
            height: 2px;
            background: rgba(255, 255, 255, 0.3);
            border-radius: 50%;
            animation: float-particle linear infinite;
        }

        @keyframes float-particle {
            0% {
                opacity: 0;
                transform: translateY(100vh) scale(0);
            }
            10% {
                opacity: 1;
            }
            90% {
                opacity: 1;
            }
            100% {
                opacity: 0;
                transform: translateY(-10vh) scale(1);
            }
        }

        /* ===============================
           RESPONSIVE
        ================================ */
        @media (max-width: 768px) {
            .container {
                padding: 20px 12px;
            }

            .stats-bar {
                gap: 8px;
            }

            .stat-card {
                flex: 1;
                min-width: 140px;
                padding: 10px 14px;
            }

            .toolbar {
                flex-direction: column;
            }

            th, td {
                padding: 10px 14px;
            }

            .hide-mobile {
                display: none;
            }

            .file-icon {
                width: 32px;
                height: 32px;
                font-size: 14px;
            }
        }

        /* ===============================
           SELECTION
        ================================ */
        ::selection {
            background: rgba(59, 130, 246, 0.3);
            color: white;
        }

        /* ===============================
           CHECKBOX (ShadcnUI style)
        ================================ */
        .checkbox {
            width: 16px;
            height: 16px;
            border-radius: 4px;
            border: 1.5px solid var(--border-hover);
            background: transparent;
            cursor: pointer;
            appearance: none;
            -webkit-appearance: none;
            transition: all 0.15s ease;
            position: relative;
        }

        .checkbox:checked {
            background: var(--accent);
            border-color: var(--accent);
        }

        .checkbox:checked::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    width: 4px;
    height: 8px;
    border-right: 2px solid white;
    border-bottom: 2px solid white;
    margin-top: -2px;
}
        .checkbox:focus {
            box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15);
        }

        /* ===============================
           ROW NUMBER / INDEX
        ================================ */
        .row-number {
            color: var(--text-muted);
            font-size: 12px;
            font-variant-numeric: tabular-nums;
            min-width: 20px;
            text-align: center;
        }

        /* ===============================
           TOOLTIP
        ================================ */
        [data-tooltip] {
            position: relative;
        }

        [data-tooltip]:hover::before {
            content: attr(data-tooltip);
            position: absolute;
            bottom: calc(100% + 8px);
            left: 50%;
            transform: translateX(-50%);
            padding: 6px 12px;
            border-radius: 8px;
            background: var(--bg-secondary);
            border: 1px solid var(--border-color);
            color: var(--text-primary);
            font-size: 12px;
            white-space: nowrap;
            z-index: 100;
            animation: tooltip-in 0.15s ease;
        }

        @keyframes tooltip-in {
            from { opacity: 0; transform: translateX(-50%) translateY(4px); }
            to { opacity: 1; transform: translateX(-50%) translateY(0); }
        }

        /* ===============================
           BREADCRUMB
        ================================ */
        .breadcrumb {
            display: flex;
            align-items: center;
            gap: 6px;
            margin-bottom: 24px;
            font-size: 13px;
            color: var(--text-muted);
            animation: fade-in-up 0.6s ease 0.25s both;
            flex-wrap: wrap;
        }

        .breadcrumb a {
            color: var(--text-muted);
            font-weight: 400;
            padding: 4px 8px;
            border-radius: 6px;
            transition: all 0.15s ease;
        }

        .breadcrumb a:hover {
            background: rgba(63, 63, 70, 0.3);
            color: var(--text-primary);
        }

        .breadcrumb .sep {
            color: rgba(113, 113, 122, 0.4);
            user-select: none;
        }

        .breadcrumb .current {
            color: var(--text-secondary);
            font-weight: 500;
        }

        /* ===============================
           TABLE FOOTER
        ================================ */
        .table-footer {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 12px 20px;
            border-top: 1px solid var(--border-color);
            background: rgba(9, 9, 11, 0.5);
            font-size: 13px;
            color: var(--text-muted);
        }

        .table-footer .page-info {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .pagination {
            display: flex;
            gap: 4px;
        }

        .page-btn {
            width: 32px;
            height: 32px;
            border-radius: 8px;
            border: 1px solid var(--border-color);
            background: transparent;
            color: var(--text-secondary);
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 13px;
            font-family: inherit;
            transition: all 0.15s ease;
        }

        .page-btn:hover {
            background: rgba(63, 63, 70, 0.3);
            color: var(--text-primary);
        }

        .page-btn.active {
            background: var(--accent);
            border-color: var(--accent);
            color: white;
        }


/* Hide Apache default title/hr/signature (your UI replaces them) */
body > h1,

body > address {
  display: none !important;
}

/* Apache header row is usually "first tr" (no thead). Keep it sticky-ish. */
table tr:first-child th {
  position: sticky;
  top: 0;
  z-index: 10;
}

/* Apache icon images: we will render our own icons via JS */
table img {
  display: none !important;
}