body {
    font-family: Arial, Helvetica, sans-serif;
    background: linear-gradient(to right, #0b1c2d, #122c44);
    color: #ffffff;
    margin: 0;
    padding: 40px;
}

h2 {
    margin-bottom: 15px;
    letter-spacing: 1px;
}

a {
    color: #4fc3f7;
    text-decoration: none;
    font-weight: bold;
    margin-right: 10px;
}

a:hover {
    text-decoration: underline;
    color: #ffffff;
}

table {
    border-collapse: collapse;
    width: 100%;
    max-width: 1410px;
    margin-top: 25px;
    background-color: #ffffff;
    color: #000;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,0.4);
}

th {
    background-color: #1e3a5f;
    color: white;
    padding: 12px;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
}

td {
    padding: 12px;
    text-align: center;
}

tr:nth-child(even) {
    background-color: #f4f6f9;
}

tr:hover {
    background-color: #e3f2fd;
    transition: 0.2s ease-in-out;
}




