.logo-container {
    background: #fef9f1;
    border-radius: 16px;
    /* box-shadow: 0 2px 8px 0 #0001; */
    padding: 0.4em;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
    margin-right: 1.5em;
}

.blog-header {
    background: #01172e;
    border-radius: 12px;
    /* box-shadow: 0 2px 8px 0 #0001; */
    padding: 2em 2em 1em 2em;
    margin-bottom: 2.5em;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
}

.blog-header #logo {
    width: 180px;
    margin-bottom: 0;
}

.blog-header h1 {
    font-size: 2.5em;
    font-weight: 700;
    color: rgb(255, 255, 255);
    margin: 0;
    letter-spacing: 1px;
    text-shadow: 0 2px 8px #a0cdfa44;
}

/* Blog styling */
.blog-container {
    margin-top: 2em;
}

.blog-entry {
    background: #01172e;
    border-radius: 8px;
    /* box-shadow: 0 2px 8px 0 #0857a7; */
    margin-bottom: 2.5em;
    padding: 2em 2em 1.5em 2em;
    /* border-left: 6px solid #0857a7; */
}

.blog-date {
    color: #f5f5f1;
    font-size: 0.95em;
    margin-bottom: 0.5em;
    font-style: italic;
}

body {
    max-width: 1100px;
    margin: 40px auto;
    background: #01172e;
    color: #ffffff;
    font-family: 'Inconsolata', monospace;
    /* font-family: 'Segoe UI', 'Helvetica Neue', Arial, 'Liberation Sans', sans-serif; */
    font-size: 1.1em;
    line-height: 1.7;
    /* box-shadow: 0 0 16px 0 #0857a7; */
    border-radius: 10px;
    padding: 32px 24px 24px 24px;
    text-align: justify;
}

pre {
    overflow-x: auto;
    border-radius: 8px;
    padding: 0.1em;
    border: 0.4px solid #000000;
    background: #0857a7 !important;
}

code {
    background: #303031 !important;
}

table {
    margin: 1.5em 0;
}

h1,
h2,
h3 {
    color: rgb(255, 255, 255);
    font-weight: 600;
    margin-top: 1.5em;
    margin-bottom: 0.5em;
}

h2 a:link {
    color: rgb(255, 255, 255);
    /* normal unvisited link */
}

h2 a:visited {
    color: rgb(255, 255, 255);
    /* visited (clicked) link */
}


p {
    text-indent: 20px;
}

#logo {
    width: 520px;
    /* or any size you want */
    height: auto;
    /* keeps aspect ratio */
    display: block;
    /* optional: removes inline gap */
    margin: 0;
    /* optional: centers the logo */
}

/* Custom highlight.js overrides for Siko */
/* Base text color for code blocks - all identifiers will use this */
.hljs {
    color: #ffffff !important;
    /* Purple for identifiers/variables */
}

.hljs-comment {
    color: #969393 !important;
    font-style: italic;
}

.hljs-keyword {
    color: #d1fc4f !important;
    /* Blue for keywords */
    font-weight: bold;
}

.hljs-type {
    color: #f05cbf !important;
    /* Orange for types */
}

.hljs-string {
    color: #009900 !important;
    /* Green for strings */
}

.hljs-number {
    color: #cc6600 !important;
    /* Orange for numbers */
}

@media (max-width: 768px) {
    body {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        border-radius: 0 !important;
        padding: 16px !important;
        text-align: left !important;
        /* better readability on narrow screens */
    }

    .blog-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 1em !important;
    }

    .blog-header #logo {
        width: 120px !important;
        margin-bottom: 1em;
    }

    .blog-header h1 {
        font-size: 1.6em !important;
    }

    pre {
        font-size: 0.9em;
        overflow-x: auto;
    }

    p {
        text-indent: 0;
        /* indentation looks weird on narrow text */
    }
}