/* Reset some basic styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #000;
    color: #fff;
    text-align: center;
}

.container {
    width: 800px;
    margin: 20px auto;
    padding: 20px;
    background-color: #111;
    border: 2px solid #00ff00;
    box-shadow: 0 0 10px #00ff00; /* subtle glow effect */
}

h1, h2 {
    color: #00ff00;
    margin-bottom: 10px;
    text-shadow: 0 0 3px #0f0; /* slight retro glow */
}

table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    color: #fff;
    background-color: #222;
    box-shadow: 0 0 5px #00ff00 inset;
}

th {
    padding: 10px;
    border: 1px solid #00ff00;
    background-color: #111;
    text-align: left;
    font-size: 16px;
}

td {
    padding: 10px;
    border: 1px solid #444;
    text-align: left;
    font-size: 14px;
}

/* Alternate row colors for readability */
tr:nth-child(even) {
    background-color: #1a1a1a;
}

tr:nth-child(odd) {
    background-color: #222;
}

.info {
    font-size: smaller;
    color: #aaa;
}

.instructions {
    margin-top: 20px;
    font-size: 14px;
    color: #ccc;
    text-align: left;
    padding: 10px;
    background-color: #111;
    border: 1px solid #00ff00;
}

a {
    color: #00ff00;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Optional: highlight download cells */
td a {
    font-weight: bold;
}
