body {
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    background: #f4f6f9;
    margin: 0;
    padding: 40px;
}

h1,
h2 {
    text-align: center;
    color: #333;
}

table {
    width: 80%;
    margin: 40px auto;
    border-collapse: collapse;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

thead {
    background-color: #4a90e2;
    color: white;
}

th,
td {
    text-align: center;
    padding: 15px;
    font-size: 16px;
}

tbody tr {
    border-bottom: 1px solid #ddd;
    transition: background 0.3s ease;
}

tbody tr:hover {
    background-color: #f0f7ff;
}

a {
    text-decoration: none;
    color: #4a90e2;
    font-weight: 600;
}

a:hover {
    color: #1c5fb8;
}

th {
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 600px) {
    table {
        width: 100%;
    }

    th,
    td {
        padding: 10px;
        font-size: 14px;
    }
}