table {
    margin: 10px auto 10px; /* Fixed width for the table */
    border-collapse: collapse;
    margin-top: 20px;
}

th, td {
    padding: 10px;
    text-align: left;
    border-bottom: 1px solid #444;
}

th {
    background-color: #1f1f1f;
}

tr:nth-child(even) {
    background-color: #333;
}

tr:hover {
    background-color: #444;
}