/* styles.css */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #121212;
    color: #e0e0e0;
}

header {
    text-align: center;
    padding: 1rem;
    background-color: #1f1f1f;
    border-bottom: 1px solid #333;
}

h1 {
    margin: 0;
}

main {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

table {
    width: 80%;
    border-collapse: collapse;
    text-align: left;
}

th, td {
    padding: 0.75rem;
    border: 1px solid #333;
}

th {
    background-color: #2c2c2c;
    color: #ffffff;
}

tr:nth-child(even) {
    background-color: #1e1e1e;
}

tr:nth-child(odd) {
    background-color: #2a2a2a;
}

tr:hover {
    background-color: #444;
}

a {
    color: #64b5f6;
    text-decoration: none;
}

footer {
    text-align: center;
    padding: 1rem;
    background-color: #1f1f1f;
    border-top: 1px solid #333;
    margin-top: 2rem;
}

footer a {
    color: #64b5f6;
    text-decoration: none;
}
