@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap');

body {
    font-family: 'Roboto', Arial, sans-serif;
    margin: 0;
    background: #f8f9fa;
    color: #333;
}

header {
    text-align: center;
    padding: 30px 16px;
    background: #0052a9;
    color: #fff;
}

header h1 {
    margin: 0;
    font-size: 2.2rem;
}

main {
    max-width: 1100px;
    margin: 0 auto;
    padding: 32px 16px 48px;
}

.year-title {
    margin: 30px 0 14px;
    text-align: center;
}

.card-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 14px;
}

.card {
    background: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 18px;
    text-align: center;
}

.card a,
.back-link,
.styled-table a {
    color: #0052a9;
    font-weight: 700;
    text-decoration: none;
}

.card a:hover,
.back-link:hover,
.styled-table a:hover {
    text-decoration: underline;
}

.styled-table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
}

.styled-table thead tr {
    background: #0052a9;
    color: #fff;
    text-align: left;
}

.styled-table th,
.styled-table td {
    padding: 12px 15px;
    border-bottom: 1px solid #ddd;
}

.styled-table tbody tr:nth-of-type(even) {
    background: #f3f6f9;
}

.muted {
    color: #666;
}

footer {
    text-align: center;
    padding: 20px;
    background: #343a40;
    color: #fff;
}
