body {
    font-family: Arial, sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    background-color: #f4f4f9;
}

h2 {
    color: #333;
    font-size: 1.5em;
    margin-top: 20px;
    text-align: center;
}

table {
    width: 100%;
    max-width: 300px;
    margin-top: 10px;
    border-collapse: collapse;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

thead th {
    background-color: #007bff;
    color: white;
    padding: 10px;
    text-align: left;
}

tbody td {
    background-color: #e9ecef;
    color: #333;
    padding: 10px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

tbody tr:hover td {
    background-color: #d6d8db;
}

table, th, td {
    border: 1px solid #ddd;
}

th, td {
    padding: 10px;
    text-align: center;
}

tr:last-child td {
    border-bottom: none;
}
