/* dir-index.css */

html, body {
    margin: 20;
    padding: 20;
    background: #111;
    color: #eee;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 14px;
}

a {
    color: #61dafb;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

table {
    width: 100%;
    border-collapse: collapse;
}

th, td {
    padding: 8px 10px;
    border-bottom: 1px solid #333;
}

th {
    background: #181818;
    text-align: left;
    font-weight: 600;
}

tr:nth-child(even) td {
    background: #151515;
}

tr:hover td {
    background: #222;
}

