.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: #a0cdfa;
    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: #234;
    margin: 0;
    letter-spacing: 1px;
    text-shadow: 0 2px 8px #a0cdfa44;
}

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

.blog-entry {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px 0 #0001;
    margin-bottom: 2.5em;
    padding: 2em 2em 1.5em 2em;
    border-left: 6px solid #a0cdfa;
}

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

body {
    max-width: 1100px;
    margin: 40px auto;
    background: #f8f9fa;
    color: #222;
    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 #0002;
    border-radius: 10px;
    padding: 32px 24px 24px 24px;
    text-align: justify;
}

pre {
    overflow-x: auto;
    border-radius: 8px;
    padding: 1em;
    border: 1px solid #000000;
    background: #a0cdfa !important;
}

code {
    background: #a0cdfa !important;
}

table {
    margin: 1.5em 0;
}

h1,
h2,
h3 {
    font-weight: 600;
    margin-top: 1.5em;
    margin-bottom: 0.5em;
}

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
.hljs-type {
  color: #b07d00 !important;
}

.hljs-variable {
  color: #005cc5 !important;
} */