body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
        Helvetica, Arial, sans-serif;
    font-weight: 400;
    line-height: 1.6;
    color: #333;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

h1 {
    font-size: 2rem;
    font-weight: 600;
    margin-top: 1.5em;
}

h2 {
    font-size: 1.5rem;
    font-weight: 500;
    margin-top: 1.5em;
}

h3 {
    font-size: 1.25rem;
    font-weight: 500;
    margin-top: 1.5em;
}

h4 {
    font-size: 1.1rem;
    font-weight: 500;
}

h5,
h6 {
    font-size: 1rem;
    font-weight: 500;
}

a {
    color: #0066cc;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

code pre {
    padding: 1em;
}

blockquote {
    border-left: 4px solid var(--accent-color);
    padding-left: 1em;
    margin-left: 0;
    color: var(--muted-color);
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.content {
    flex: 1;
}

.site-title {
    font-size: 1.5em;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.site-title a {
    color: #333;
    text-decoration: none;
}

.site-title a:hover {
    text-decoration: underline;
}

/* Header styles */
.site-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid black;
}

.site-nav {
    margin-left: auto; /* This pushes the navigation to the right */
}

.site-nav a {
    margin-left: 1.5rem;
}

.posts {
    margin-top: 2rem;
}

.posts h1 {
    font-size: 1.2rem;
    font-weight: 300; /* Lighter font weight */
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.posts ul {
    list-style: none;
    padding: 0;
}

.post-entry {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.post-date {
    color: #666;
    font-size: 0.85rem;
    margin-left: 1rem;
    font-variant-numeric: tabular-nums;
    min-width: 6rem;
    text-align: right;
}

.post {
    margin-bottom: 0.5rem;
    border-bottom: none;
    padding-bottom: 0.2rem;
    padding-left: 1.2rem;
    position: relative;
}

.post:last-child {
    border-bottom: none;
}

.post-title {
    margin-bottom: 0rem;
}

.post-meta {
    color: var(--muted-color);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    margin-top: 0rem;
}

.post-content {
    margin-bottom: 2rem;
}

.post-tags {
    margin-top: 2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.post-tag {
    background-color: #f1f1f1;
    padding: 0.2rem 0.6rem;
    border-radius: 3px;
    font-size: 0.8rem;
    color: var(--muted-color);
    text-decoration: none;
}

.post-tag:hover {
    background-color: #e1e1e1;
    text-decoration: none;
}
