/* Matrix-style neon green on black directory listing */

body {
    background-color: #000000;
    color: #00ff41;
    font-family: "Courier New", Courier, monospace;
    margin: 1.5em;
}

h1, p {
    color: #00ff41;
}

/* Main table */
table#indexlist {
    background-color: #000000;
    color: #00ff41;
    border-collapse: collapse;
    width: 100%;
}

table#indexlist th,
table#indexlist td {
    border: 1px solid #003300;
    padding: 0.4em 0.8em;
}

/* Header row */
tr.indexhead {
    background-color: #001a00;
    color: #33ff66;
}

/* Alternating rows */
tr.odd {
    background-color: #000a00;
}
tr.even {
    background-color: #000000;
}

/* Links */
a {
    color: #00ff41;
    text-decoration: none;
    text-shadow: 0 0 4px #00ff41;
}
a:hover {
    color: #66ff99;
    text-decoration: underline;
    text-shadow: 0 0 8px #00ff41;
}
a:visited {
    color: #00cc33;
}

/* Column tweaks */
td.indexcolname {
    padding-right: 1.5em;
}
td.indexcolsize,
th.indexcolsize {
    text-align: right;
}

/* Red was previous — now neon green HRs */
hr {
    border: none;
    border-top: 1px solid #00ff41;
    background-color: #00ff41;
    height: 1px;
    box-shadow: 0 0 6px #00ff41;
}

tr.breakrow {
    border-color: #00ff41;
}
