/* /fancyindex/style.css */
/* 自定义 fancyindex 样式 */
table {
    width: 100%;
    border-collapse: collapse;
    font-family: "Arial", sans-serif;
}

th {
    background-color: #f2f2f2;
    padding: 10px;
    text-align: left;
    border-bottom: 2px solid #ddd;
}

td {
    padding: 8px;
    border-bottom: 1px solid #ddd;
}

tr:hover {
    background-color: #f5f5f5;
}

a {
    color: #0066cc;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* 修改文件/目录图标（可选） */
td:first-child::before {
    content: "📄 ";
}

tr[data-filetype="directory"] td:first-child::before {
    content: "📁 ";
}
