body {
    font-family: Inter, sans-serif;
    text-align: center;
    background-color: #f1f1f1;
    margin: 0;
    /* Setting the minimum height and flex allows the footer to be anchored to the bottom of the page */
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

h1 {
    color: white;
    background-color: #4e86b8;
    padding: 10px;
    margin: 0;
}

table {
    width: 50%;
    margin: 5px auto;
    border-collapse: collapse;
    background: white;
    border-radius: 7px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
}

/* Table heading */
thead {
    background-color: #4e86b8;
    color: white;
    font-weight: bold;
}

/* Table headers and table data */
th, td {
    padding: 12px;
    border: 1px solid #989898;
}

.module-name {
    font-weight: bold;
}

tfoot {
    background-color: #ffcc00;
    font-weight: bold;
}

a {
    color: #0094ff;
    text-decoration: none;
    font-weight: bold;
}

/* Underline links when hovered */
a:hover {
    text-decoration: underline;
}

footer {
    color: white;
    background-color: #262927;
    padding: 10px;
    /* Anchor the footer to the bottom of the page */
    margin-top: auto;
}
