/* General Styling */
body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
    color: #333;
}

/* Header */
header {
    background: #7a0000;
    color: white;
    padding: 2rem 0;
    text-align: center;
}

header .subtitle {
    font-size: 1.2rem;
    color: #e0e0e0;
    margin-top: 0.5rem;
}

.subtitle sup {
    font-size: 0.8em;
}

header ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0;
}

header li {
    display: inline;
    margin: 0 15px;
}

header a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

header a:hover {
    text-decoration: underline;
}

/* Main Content */
main {
    padding: 2rem 0;
}

.container {
    width: 90%;
    max-width: 960px;
    margin: 0 auto;
}

/* Centering and spacing */
.row {
    display: flex;
    justify-content: center;
    text-align: center;
    flex-wrap: wrap;
    gap: 15px;
}

.row p {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

/* Styling for links */
.row a {
    display: inline-block;
    padding: 12px;
    text-align: center;
    text-decoration: none;
    color: inherit;
}

/* Image styling */
.row a img {
    border: 1px solid #000;
    height: 100px;
    object-fit: contain;
}

/* Footer */
footer {
    background: #333;
    color: white;
    padding: 1rem 0;
    text-align: center;
    margin-top: 2rem;
}

footer a {
    color: #007acc;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* Table styling */

table {
    border-collapse: collapse;
    width: 100%;
    margin: 1em 0;
}

th, td {
    padding: 10px 14px;
    border-bottom: 1px solid #ddd;
    text-align: left;
}

th {
    background: #fafafa;
    font-weight: 600;
}

tr:nth-child(even) {
    background-color: #f5f5f5;
}

/* Figures and spacing */
figcaption {
    font-size: 13px;
}

figure {
    margin: 2rem 0; /* top/bottom spacing, no left/right */
}

