body {
    font-family: Arial;
    background: #f4f6f8;
    margin: 20px;
}

h1 {
    text-align: center;
}

table {
    border-collapse: collapse;
    width: 100%;
    background: white;
}

th {
    background: #2c3e50;
    color: white;
    padding: 10px;
}

td {
    padding: 8px;
    border-bottom: 1px solid #ddd;
    text-align: center;
}

tr:hover {
    background: #f1f1f1;
}

a {
    text-decoration: none;
    color: blue;
}