/* Base structural styles - shared across all themes */

* {
    box-sizing: border-box;
}

body {
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

header {
    padding-bottom: 1rem;
    margin-bottom: 2rem;
}

nav a {
    margin-right: 1rem;
    text-decoration: none;
}

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

main {
    min-height: 60vh;
}

article h1 {
    margin-bottom: 0.5rem;
}

article time {
    font-style: italic;
}

.content {
    margin-top: 2rem;
}

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

th, td {
    padding: 0.5rem;
    text-align: left;
}

th {
    font-weight: bold;
}

footer {
    margin-top: 3rem;
    padding-top: 1rem;
    text-align: center;
}

footer a {
    margin: 0 0.5rem;
    text-decoration: none;
}

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