@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500&display=swap');

/*body {*/
/*    font-family: "Inter", sans-serif;*/
/*    font-weight: 400;*/
/*    color: #333;*/
/*    line-height: 1.8em;*/
/*    font-size: 17px;*/
/*}*/

:root {
    /* Base styles */
    --font-primary: 'IBM Plex Sans', Verdana, sans-serif;
    /*--font-weight: 700;*/
    --color-primary-text: #444;
    --color-background: #fff;
    --color-headline: #222;
    --color-link: #3273dc;
    --color-link-hover: #3273dc;
    --color-selection: #FDD9B5;
    --color-selection-text: #333;
    /* Tags */
    --color-tag-bg: #ffebd6;
    --color-tag-border: #FFCBA4;
    --color-tag-text: #D35400;
    --color-tag-hover: #FFD9B0;
    /* Dark mode */
    --color-background-dark: #333;
    --color-text-dark: #ddd;
    --color-headline-dark: #eee;
    --color-link-dark: #8cc2dd;
    --color-code-bg-dark: #777;
    --color-blockquote-dark: #ccc;
    --color-input-bg-dark: #252525;
    --color-helptext-dark: #aaa;
    /* Other elements */
    --color-blogpost-visited: #8b6fcb;
}


body {
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 400;
    margin: auto;
    padding: 20px;
    max-width: 800px;
    text-align: left;
    background-color: var(--color-background);
    word-wrap: break-word;
    overflow-wrap: break-word;
    line-height: 1.5;
    color: var(--color-primary-text);
}

a {
    color: #3273DC;
    text-decoration: none;
    word-break: break-word;
}
    a:hover {
        border-bottom: 2px solid #3273DC;
    }

html,button,input,select,textarea {
    color: #333;
}

::-moz-selection {
    background: #3273DC;
    text-shadow: none;
    color: #fff;
}

::selection {
    background: #3273DC;
    text-shadow: none;
    color: #fff;
}

hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #ccc;
    margin: 1rem 0;
    padding: 0;
}

img {
    margin: 10px auto 10px auto;
    max-width: 100%;
    display: block;
}

a img {
    border:none;
}

figure {
    margin: 0;
    text-align: center;
}

fieldset {
    border: 0;
    margin: 0;
    padding: 0;
}

table {
  -ms-overflow-style: -ms-autohiding-scrollbar;
  -webkit-overflow-scrolling: touch;
  background-color: transparent;
  margin-bottom: 1rem;
  overflow-x: auto;
  width: 100%;
}

table th,
table td {
  border-bottom: 1px solid #dee2e6;
  padding: 0.75rem;
  vertical-align: top;
}

table thead th {
  border-bottom: 2px solid #dee2e6;
  vertical-align: bottom;
}

table tbody + tbody {
  border-top: 2px solid #dee2e6;
}

table tbody tr:nth-of-type(even) {
  background-color: rgba(0, 0, 0, 0.15);
}

table th {
  background-color: #212529;
  border-color: #32383e;
  color: #fff;
}

textarea {
    resize: vertical;
}

blockquote {
    margin-left: 1rem;
    font-style: italic;
    font-size: 1.4rem;
    font-family: Georgia,bitstream charter,serif;
    border-left: 3px solid;
    border-color: #3273DC;
    padding-left: 20px;
}

blockquote cite {
    font-size: 70%;
    opacity: .8;
}

blockquote em {
    font-weight: 600;
}


h1, h2, h3, h4, h5, h6 {
    color: #333;
    font-weight: 600;
    line-height: 1.3em;
    margin: 30px 0 20px 0;
}

h1 {
    font-size: 2.75rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.6rem;
}

h4 {
    font-size: 1.2rem;
}

h5 {
    font-size: 1rem;
}

h6 {
    font-size: .9rem;
}

.align-center {
    text-align: center;
}

.align-left {
    text-align: left;
}

.align-right {
    text-align: right;
}

ul {
    padding-left: 15px;
}

ul.flat {
    margin: 0;
    padding: 0;
}

ul.flat li {
    display: block;
    list-style: none;
    margin-left: 0;
}

.prevent-collapse {
    min-height: .1rem
}

.smaller {
    font-size: 70%;
}

ul {
    list-style: disc inside;
}

.post ul li {
    margin-bottom: 10px;
}

.post ul li p {
    display: inline;
}

.highlight pre {
    margin-bottom: 0;
    margin-top: 0;
    padding: 20px;
    background-color: transparent !important;
    background-color: #2b303b;;
    color: #333;
}


.highlight {
    background: 0 0;
    background-color: inherit;
}

/*start of code*/
code {
    background-color: #f4f4f4;
    color: #333;
    padding: 2px 5px;
    border-radius: 4px;
}

pre code {
    font-family: 'IBM Plex Mono', monospace;
    display: block;
    padding: 20px;
    white-space: pre-wrap;
    font-size: 0.875rem;
    overflow-x: auto;
}

pre[class^="language-"] {
    background-color: #2b303b;
    color: #c2cae3;
    border-radius: inherit;
}

code[class^="language-"] {
    background-color: #2b303b;
    color: #c2cae3;
    border-radius: inherit;
}

blockquote {
    border-left: 1px solid #999;
    color: #222;
    padding-left: 20px;
    font-style: italic;
}

/*end of code*/
.wrapper {
    max-width: 760px;
    margin: 0 auto;
}

.container {
    max-width: 800px;
    margin-top: 30px;
}

.header {
    margin-bottom: 20px;
    padding-bottom: 20px;
}

.header .avatar {
    float: left;
    margin: 0 20px 0 0;
}
.header .avatar img {
    width: 64px;
    height: 64px;
    overflow: hidden;
    border-radius: 100%;
}
.header .site-title {
    margin: 0;
}
    .site-title a {
        color: #333;
        text-decoration: none !important;
        font-weight: 400;
    }
    .site-title a:hover {
        border-bottom-width: 3px;
    }

.header .site-description {
    display: flex;
    justify-content: space-between;
}
    .header .site-description p {
        margin: 0 0 10px 0;
    }

.header nav {
    border-top: 1px solid #eee;
    padding-top: 15px;
}

.header nav ul,
.header nav li {
    margin: 0;
    padding: 0;
}

.header nav li {
    display: inline-block;
    list-style: none;
    margin: 0 30px 0 0;
}
    .header nav.social a {
        color: #333;
    }
    .header nav.social a:hover {
        color: #3273DC;
    }

.header .site-description nav {
    margin: 0;
    padding: 0;
    border: none;
    min-width: 50px;
    margin-left: 15px;
}

.header .site-description nav ul svg {
    max-height: 15px;
}

.header .site-description .scheme-toggle {
    height: 100%;
}

.header .site-description .scheme-toggle a svg {
    max-height: 15px;
}

.header .site-description .scheme-toggle a.dark svg {
    fill: #f8e04f;
    color: #f8e04f;
}

.header .site-description .scheme-toggle a.light svg {
    fill: grey;
    color: black;
}

.page-title{
    font-weight: 300;
}

.section .section-header {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    color: #999;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.recent-posts .posts .post {
    margin-bottom: 45px;
}

.post-header {
    display: flex;
}
.post-header .meta .date {
    margin-right: 30px;
    width: 64px;
    text-align: center;
}
.post-header .meta .date .day {
    font-family: "Playfair Display", serif;
    font-weight: 700;
    line-height: 0.45em;
    font-size: 3em;
    display: block;
    margin-bottom: 20px;
}
.post-header .meta .date .rest {
    display: block;
    font-size: 0.75em;
}
.post-header h1.title {
    margin: -10px 0 0 0;
    font-weight: 400;
}

.post .title.small {
    margin: 0 0 10px 0;
    font-weight: 400;
}
.post .post-header {
    margin-bottom: 30px;
}

.post .draft-label {
    color: #3273DC;
    text-decoration: none;
    padding: 2px 4px;
    border-radius: 4px;
    margin-left: 6px;
    background-color: #f9f2f4;
}

.post .tags a {
    display: inline-block;
    border: 1px solid #3273DC;
    border-radius: 3px;
    padding: 0px 6px;
    color: #3273DC;
    line-height: 20px;
    font-size: 0.85em;
    text-decoration: none;
    margin: 0 10px 0 0;
}

.list .posts .post-header .meta {
    margin-bottom: 0;
    margin-left: 5px;
}

.footer {
    text-align: right;
    font-size: 0.75em;
    color: #999;
    border-top: 1px solid #f4f4f4;
    margin-top: 40px;
    padding: 15px 0;
}
    .footer a {
        color: #666;
    }
    .footer a:hover {
        color: #3273DC;
    }

.tag-cloud {
    margin-top: 20px;
}

.tag-cloud a {
    margin-right: 15px;
}

.pagination {
    margin: 0;
    padding: 0;
    text-align: left;
    display: flex;
    justify-content: space-between;
}

.pagination li {
    list-style: none;
    display: inline-block;
    margin: 0;
    padding: 0;
}

.pagination .page-prev {
    margin-right: 20px;
    padding-right: 20px;
}

.pagination .page-item.page-prev {
    text-align: left;
}

.pagination .page-item.page-next {
    text-align: right;
}

@media (max-width: 900px) {
    body {
        padding: 20px;
    }

    h1 {
        font-size: 1.8rem;
    }

    h2 {
        font-size: 1.6rem;
    }

    h3 {
        font-size: 1.2rem;
    }

    h4 {
        font-size: 1rem;
    }

    .container {
        margin-top: 10px;
    }

    .header .nav.social li {
        margin: 0;
    }
    .header .nav li {
        margin: 0 10px 0 0;
        font-size: 0.875em;
    }

    table {
      -ms-overflow-style: -ms-autohiding-scrollbar;
      -webkit-overflow-scrolling: touch;
      display: block;
      overflow-x: auto;
      width: 100%;
    }
}

@media (max-width: 400px) {
    .header .nav.social {
        min-width: auto;
        margin: 0;
    }
    .header .site-description {
        font-size: 1em;
        margin-top: 10px;
        font-size: 0.875em;
        line-height: 1.4em;
    }
}

.nav.social .flat {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.social-icon-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 2px; /* Reduced spacing between icons */
}

.nav .scheme-toggle {
    vertical-align: middle;
    margin-right: 5px; /* Adjust as necessary */
}

.nav ul.flat li a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.post .tags a {
    background-color: var(--color-tag-bg);
    color: var(--color-tag-text);
    padding: 5px 12px;
    border-radius: 12px;
    border: 1px solid var(--color-tag-border);
    text-decoration: none;
    margin-right: 8px;
    font-size: 0.85rem;
    display: inline-block;
    vertical-align: middle;
}

.post .tags a :hover {
    opacity: 0.85;
}

/* Enhance code block styling */
pre, code {
    background-color: #2b303b; /* Dark background for better contrast */
    color: #c2cae3; /* Light text color for readability */
}

/* Improve code block selection visibility */
pre::selection, pre::-moz-selection,
code::selection, code::-moz-selection {
    background: #4b5363; /* Lighter background for selection */
    color: #ffffff; /* White text color for selected text */
}

/* Ensure general text selection is visible */
::selection, ::-moz-selection {
    background: #3273DC; /* Blue background for selection */
    color: #fff; /* White text color for selected text */
}
