/* src/assets/css/style.css */
body {
    font-family: sans-serif;
    line-height: 1.6;
    margin: 0 auto;
    max-width: 800px;
    padding: 20px;
    color: #333;
}

h1, h2, h3, h4, h5, h6 {
    color: #222;
    margin-top: 1em;
    margin-bottom: 0.5em;
}

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

a:hover {
    text-decoration: underline;
}

nav {
    background-color: #f8f9fa;
    padding: 10px 0;
    border-bottom: 1px solid #e9ecef;
    margin-bottom: 20px;
}

nav a {
    margin-right: 15px;
    font-weight: bold;
}

article {
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

article h1 {
    margin-top: 0;
}

footer {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #e9ecef;
    text-align: center;
    color: #6c757d;
    font-size: 0.9em;
}

/* Mermaid diagram styling */
.mermaid {
    margin: 20px 0;
    text-align: center;
}

/* Navigation for next/prev posts */
nav.post-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

nav.post-navigation .previous, nav.post-navigation .next {
    flex: 1;
}

nav.post-navigation .previous {
    text-align: left;
}

nav.post-navigation .next {
    text-align: right;
}

nav.post-navigation a {
    display: inline-block;
    padding: 8px 12px;
    background-color: #f0f0f0;
    border-radius: 5px;
    color: #333;
}

nav.post-navigation a:hover {
    background-color: #e0e0e0;
    text-decoration: none;
}
