/* General Resets */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Segoe UI', Arial, sans-serif;
    background-color: #f4f7f9;
    color: #333;
    line-height: 1.6;
}

/* Header Section */
header {
    background-color: #002147; /* Dark University Blue */
    color: #ffffff;
    padding: 3rem 1rem;
    text-align: center;
}

header h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

header .subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    font-weight: 300;
}

/* Main Content */
.container {
    max-width: 1000px;
    margin: 2rem auto;
    padding: 0 20px;
}

h2 {
    color: #002147;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid #002147;
    display: inline-block;
    padding-bottom: 5px;
}

/* Table Design */
.table-container {
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 3rem;
}

table {
    width: 100%;
    border-collapse: collapse;
    background: white;
}

th, td {
    padding: 15px 20px;
    text-align: left;
    border-bottom: 1px solid #e0e0e0;
}

th {
    background-color: #003366;
    color: #ffffff;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
}

/* Table Rows & Interactivity */
tbody tr:last-child td {
    border-bottom: none;
}

tbody tr:hover {
    background-color: #f0f4f8;
    transition: background-color 0.2s ease;
}

/* Link Styling */
a {
    color: #0056b3;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    header h1 {
        font-size: 1.8rem;
    }

    th, td {
        padding: 10px;
        font-size: 0.85rem;
    }

    .table-container {
        overflow-x: auto; /* Allows horizontal scrolling on small screens */
    }
}