body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f4f4f9;
    color: #333;
    margin: 0;
    padding: 40px;
    display: flex;
    justify-content: center;
}

.container {
    width: 100%;
    max-width: 900px;
}

h1 {
    text-align: center;
    color: #2c3e50;
    margin-bottom: 10px; /* Reduced margin to bring date closer */
    font-weight: 600;
}

.date-subtitle {
    text-align: center;
    color: #7f8c8d;
    font-size: 12px; /* Significantly smaller than h1 */
    margin-top: -5px;
    font-weight: 400;
}

table {
    width: 100%;
    border-collapse: collapse;
    background-color: #ffffff;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    border-radius: 8px;
    overflow: hidden;
    margin-top: 20px;
}

thead {
    background-color: #3498db;
    color: white;
}

th, td {
    padding: 15px 20px;
    text-align: left;
}

th {
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9em;
}

tbody tr {
    border-bottom: 1px solid #e0e0e0;
    transition: background-color 0.2s ease;
}

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

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

.year-col {
    font-weight: bold;
    color: #555;
    width: 10%;
}

.title-col {
    font-weight: 500;
    color: #2c3e50;
}

.link-col {
    text-align: right;
    width: 20%;
}

a {
    text-decoration: none;
    color: #3498db;
    font-weight: 500;
    padding: 6px 12px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

a:hover {
    background-color: #3498db;
    color: white;
}

@media (max-width: 600px) {
    th, td {
        padding: 10px;
        font-size: 14px;
    }
}
