/* 让表格的列更紧凑 */
table.fancyindex-table th,
table.fancyindex-table td {
    padding: 4px 8px;   /* 调小上下左右内边距 */
    white-space: nowrap; /* 不换行 */
}

/* 可以适当设置列宽，保持表头靠近 */
table.fancyindex-table th.filename {
    width: 40%;
}
table.fancyindex-table th.filesize {
    width: 20%;
}
table.fancyindex-table th.filedate {
    width: 30%;
}

/* 响应式：手机屏幕时缩小字体和padding */
@media screen and (max-width: 600px) {
    table.fancyindex-table {
        font-size: 12px;
    }
    table.fancyindex-table th,
    table.fancyindex-table td {
        padding: 2px 4px;
    }
}

