﻿:root {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: #111;
    color: #eee;
}

body {
    margin: 0;
}

a {
    color: #4ea3ff;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.site-header {
    background: #181818;
    border-bottom: 1px solid #333;
    padding: 1rem 0;
    margin-bottom: 1rem;
}

.site-title {
    margin: 0;
    font-size: 1.8rem;
}

.site-title a {
    color: #fff;
}

.site-subtitle {
    margin: 0.25rem 0 0;
    color: #aaa;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1rem;
}

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

.post-item {
    display: flex;
    justify-content: space-between;
    padding: 0.4rem 0;
    border-bottom: 1px solid #222;
}

.post-item a {
    font-weight: 500;
}

.post-date {
    color: #888;
    font-size: 0.85rem;
    margin-left: 1rem;
    white-space: nowrap;
}

.post {
    background: #181818;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 0 0 1px #222;
    margin-bottom: 1.5rem;
}

.post-meta {
    color: #888;
    font-size: 0.9rem;
}

.post-body p {
    line-height: 1.6;
}

.back-link {
    margin-bottom: 3rem;
}

.navbar {
    background: #181818;
    border-bottom: 1px solid #333;
}

.navbar-inner {
    display: flex;
    justify-content: flex-end; /* align links to the right */
    padding: 0.75rem 0;
}

.nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: row;
    gap: 1.5rem;
}

.nav-item a {
    color: #fff;
    font-weight: 500;
}

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

