/* Dark Background for FancyIndex */
body {
    background-color: #1a1a1a; /* Dark background */
    color: #e0e0e0;            /* Light text */
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    margin: 0;
    padding: 20px;
}

/* Table Styling */
#list {
    width: 100%;
    border-collapse: collapse;
}

#list thead th {
    background-color: #2d2d2d;
    color: #ffffff;
    border-bottom: 2px solid #444;
    padding: 10px;
    text-align: left;
    font-size: 14px;
}

#list tbody tr {
    border-bottom: 1px solid #333;
}

#list tbody td {
    padding: 10px;
    color: #cccccc;
}

/* Hover Effect */
#list tbody tr:hover {
    background-color: #2a2a2a;
}

/* Links */
#list a {
    color: #4da6ff;
    text-decoration: none;
}

#list a:hover {
    text-decoration: underline;
    color: #80bfff;
}

/* Hide unnecessary elements if needed */
h1 {
   color: #ffffff;
   border-bottom: 1px solid #444;
   padding-bottom: 10px;
}
