
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  overflow-y: scroll;
  overflow-x: hidden; /* prevent horizontal scrolling globally */
  scrollbar-width: thin;
  scrollbar-color: var(--fg4) var(--bg);
}
body {
font-family: Verdana, sans-serif;
font-size:14px;
  line-height: 1.5;
background-color: #fcf000;
color:#000000;
  margin: 0;
  padding: 0;
  min-height: 100vh;
  overflow-x: hidden; /* ensure only vertical scrolling on body */
}
#main-title {
  font-family: "Iowan Old Style BT", Georgia, serif;
  font-weight: 400;
  text-transform: none;
  letter-spacing: normal;
  text-wrap: balance;
  font-size: 17px;
  color: var(--fg4);
  position: relative;
  overflow: hidden;
  display: inline-block;
}
#main-title .title-main {
  font-style: normal;
  color: var(--fg) !important;
}
#main-title .title-sub {
  font-style: italic;
  color: var(--fg4);
  margin-left: 8px;
}

.dark-mode-toggle {
  color: var(--fg);
  border: none;
  cursor: pointer;
  background-color: var(--bg);
  padding: 0.5rem;
  border-radius: 50%;
  transition: background-color 0.3s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 2.5rem;
  width: 2.5rem;
  flex-shrink: 0;
  margin-left: 1.5rem;
}
.dark-mode-toggle:hover {
  color: var(--fg1);
  background-color: var(--hover-bg);
}


/* Mobile full-screen overlay menu */
.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  background: var(--bg);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0.25s ease;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mobile-menu-overlay.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.mobile-menu-nav {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  text-align: center;
}
.mobile-menu-nav a {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 20px;
  letter-spacing: -0.01em;
  color: var(--fg) !important;
  text-decoration: none;
}

/* Keep header/hamburger above overlay for close interaction */
#header .site-header,
.hamburger {
  z-index: 1001;
}

/* Prevent background scroll when menu is open */
body.menu-open {
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  #header .site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1002; /* stay above overlay (1000) */
    background: var(--bg);
    padding: 0.75rem 1rem;
    height: 50px; /* Slightly smaller but still fixed on mobile */
  }

  .dark-mode-toggle {
    height: 2rem;
    width: 2rem;
    margin-left: 1rem;
  }
}
body:not(.darkmode) #sun {
  display: none;
}
body.darkmode #moon {
  display: none;
}
a {
  text-decoration: none;
  transition: color 0.3s ease-in-out, opacity 0.3s ease-in-out;
}
a:link {
  color: var(--fg4);
}
a:hover,
a:visited {
  color: var(--fg4);
  opacity: 1;
}
::selection {
  background-color: rgba(0, 0, 0, 0.12);
}
.darkmode ::selection {
  background-color: rgba(240, 240, 240, 0.5);
  color: var(--fg);
}
time {
  color: var(--fg4);
  min-width: 5rem;
}
hr {
  background-color: var(--fg4);
  margin-top: 1rem;
  margin-bottom: 1rem;
  border: 0;
  height: 1px;
}
#wrapper {
  background-color: var(--bg);
  display: flex;
  flex-direction: column;

  min-height: 100vh;
  overflow-wrap: break-word;
  padding: 0 1rem;
}
@media screen and (max-width: 768px) {
  #wrapper {
    padding-left: 0.33rem;
    padding-right: 0.33rem;
  }
}
.paginator {
  align-items: center;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin-top: 3.5rem;
  position: relative;
}

/* Center the back-to-top link */
.paginator #back-to-top {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
::-webkit-scrollbar {
  background-color: var(--bg);
  height: 8px;
  width: 8px;
}
::-webkit-scrollbar-thumb {
  background-color: var(--fg4);
}
::-webkit-scrollbar-thumb:hover {
  background-color: var(--fg1);
}
#header {
  display: flex;
  justify-content: flex-end; 
  flex-direction: column;
  background-color: var(--bg);
  transition: transform 0.3s ease;
  box-sizing: border-box;
   height:80px; /* Fixed height for consistency */
  padding: 0 1rem;
}


@media screen and (min-width: 769px) {
  /* Reduce header inner padding on desktop where wrapper already has 1rem */
  #header .site-header {
    padding-left: 0.33rem;
    padding-right: 0.33rem;
  }
}

/* Ensure sticky mobile header overrides generic relative positioning */
@media screen and (max-width: 768px) {
  #header .site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1002;
    background: var(--bg);
  }
}

/* Offset content so it doesn't hide under the fixed header on mobile */
@media screen and (max-width: 768px) {
  #wrapper {
    padding-top: 30px;
  }
}

/* Navbar spacer for homepage */
.navbar-spacer {
  flex-shrink: 0;
  /* Invisible spacer to maintain layout */
}
#header .site-header > h1 {
  text-align: center;
  margin: 0;
  padding: 0;
}
@media screen and (min-width: 768px) {
  #header .site-header > h1 {
    font-size: 2.8rem;
  }
}



/* Removed general header link color - now handled by specific selectors */
main {
  margin: 0;
  flex: 1;
  padding-left: 1rem;
  padding-right: 1rem;
}
#main {
  align-self: center;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  width: 100%;
  margin: auto;
  max-width: 680px;
  padding: 1rem;
  animation: fadeIn 0.6s ease-in-out;
}
@media screen and (max-width: 768px) {
  #main {
    width: 100%;
  }
}
#footer {
  font-family: var(--font-sans);
  font-weight: 400;
  font-style: normal;
  color: var(--fg4);
  align-items: center;
  display: flex;
  font-size: 0.9rem;
  letter-spacing: -0.01em;
  flex-direction: column;
  margin-top: 5rem;
  margin-bottom: 1rem;
}

/* Ensure all footer text uses GT America */
#footer * {
  font-family: inherit !important;
}
#footer > .footnote {
  text-align: center;
}
#footer > div > span > a {
  color: var(--fg4);
  text-decoration: none;
  position: relative;
  transition: color 0.3s ease-in-out, opacity 0.3s ease-in-out;
}
#footer > div > span > a:after {
  background-color: var(--fg4);
  content: "";
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 0.5px;
  bottom: 0;
  left: 0;
  transform-origin: bottom right;
  transition: transform 0.2s ease-out, opacity 0.3s ease-in-out;
  opacity: 1;
}
#footer > div > span > a:hover {
  color: var(--fg3);
  opacity: 1;
}
#footer > div > span > a:hover:after {
  transform: scaleX(1);
  transform-origin: bottom left;
  opacity: 0.5;
}

/* Footer layout */
#footer > div {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  text-align: center;
}

#footer > div > span {
  padding: 0 0.25rem;
}

/* Responsive styles for narrow screens */
@media (max-width: 600px) {
  /* Hide navbar on very small screens to avoid crowding */
  .top-nav {
    display: none;
  }
  .hamburger {
    display: inline-block;
  }
  /* Slightly reduce space on the right of the hamburger */
  #header .site-header {
    padding-right: 0.6rem;
  }


  #footer {
    align-items: flex-start;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  #footer > div {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    width: 100%;
  }

  #footer > div > span {
    width: 100%;
    padding: 0.25rem 0;
    font-size: 0.9rem;
  }

  /* Hide all footer separators on mobile */
  #footer > div > .footer-separator {
    display: none;
  }
}


.icon svg {
  fill: var(--fg);
  margin-right: 0.3em;
  margin-left: 0.3em;
}
.taxonomy-svg {
  padding: 0;
  top: 0.125em;
  position: relative;
}
.row {
  margin-left: 2rem;
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}



.logo-container {
  margin-inline: auto;
  padding-block: 1rem 0.4rem;
  text-align: right;
  position:relative;
  height:70px;
 
}
@media (min-width: 1170px) {
	.logo-container {
	width: calc(660px + 3.2rem);
	text-align: right;
  position:relative;
	}
}
@media (max-width: 1170px) {
	.logo-container {
	max-width: calc(660px + 3.2rem);
	text-align: right;
  position:relative;
  width:100%;
	}
}

#logoblok{
	width:60px;
	position:absolute;
	top:10px;
	right:5px;
}

@media (prefers-reduced-motion: reduce) {
  .logo {
    animation: none;
  }
}

@keyframes float {
  0% {
    transform: translateY(5px);
  }
  50% {
    transform: translateY(-5px);
  }
  100% {
    transform: translateY(5px);
  }
}

@keyframes gradRotate {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

/* Homepage and list page styles */
/* Ensure outer container accounts for horizontal padding without reducing 660px text width */
#main.index.content {
  max-width: calc(660px + 3.2rem); /* 660 + 2 * 1.6rem */
}

/* Non-blog single pages (e.g., privacy, terms) */
#main.content > article.content {
  max-width: 660px;
  margin-left: auto;
  margin-right: auto;
}

/* Blog index page container width includes horizontal padding */
#main.index.list {
  max-width: calc(660px + 3.2rem); /* 660 + 2 * 1.6rem */
}

/* Constrain inner content to 660px and center it on list pages */
#main.index.list .blog-page-title,
#main.index.list .content,
#main.index.list .post-group {
  max-width: 660px;
  margin-left: 0;
  margin-right: 0;
}

#main.index .post-group ul {
  list-style-type: none;
}

/* Remove bullet points from homepage content lists (e.g., job listings) */
#main.index.content ul {
  list-style-type: none;
  margin-left: 0;
  padding-left: 0;
}

#main.index.content ul li {

  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 0.75rem;
}

/* Style job links - no underline by default, default text color */
#main.index.content ul li a {
  color: var(--fg);
  text-decoration: none;
  position: relative;
  transition: color 0.3s ease-in-out;
}



/* Style job location text as secondary */
#main.index.content .job-location {
  color: var(--fg4);
  margin-left: 2rem;
}

/* Responsive job listings for narrow screens */
@media (max-width: 600px) {
  #main.index.content ul li {
    /*
	flex-direction: column;
    align-items: flex-start;
	*/
  }


  /* Left-align section titles on mobile */
  #main.index.content h2[style*="text-align: center"] {
    text-align: left !important;
  }
}

#main.index.list .post-group ul {
  padding-top: 2rem;
}

#main.index .post-group ul li {
  margin-bottom: 0;
}


#main.index .post-group .post-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.25rem;
}

#main.index .post-group .post-info .post-subtitle {
  font-size: 0.95em;
  color: var(--fg1);
  line-height: 1.4;
  transition: opacity 0.2s ease;
}

#main.index .post-group .post-info .author {
  display: block;
  font-size: 16px;
  color: var(--fg4);
  font-family: var(--font-sans);
  padding-top: 10px;
  transition: opacity 0.2s ease;
}

#main.index .post-group .post-item-link .desktop-time {
  text-align: left;
  font-size: 15px;
  font-family: var(--font-sans);
  color: var(--fg4);
  white-space: nowrap;
  transition: opacity 0.2s ease;
}

@media screen and (min-width: 768px) {
  #main.index .post-group ul {
    margin-left: 0;
    padding-left: 0;
  }
}

/* Hide mobile time on desktop */
.mobile-time {
  display: none;
}

/* Author-date wrapper for mobile layout */
.author-date-wrapper {
  display: block;
}

@media screen and (max-width: 767px) {
  #main.index .post-group .post-item-link {
    display: block;
    padding: 1.6rem;
    margin: 0 -1.6rem;
  }

  /* Hide desktop time on mobile */
  .desktop-time {
    display: none;
  }

  /* Show mobile time */
  .mobile-time {
    display: inline;
    font-size: 16px;
    color: var(--fg4);
    font-family: var(--font-sans);
    transition: opacity 0.2s ease;
  }

  /* Layout author and date on same line */
  .author-date-wrapper {
    display: flex;
    align-items: baseline;
    gap: 0.8rem;
  }

  #main.index .post-group .post-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
  }
}

/* Match mobile horizontal padding to blog posts (left/right = 1.6rem) */
@media (max-width: 1170px) {
  #main.index,
  #main.content {
    padding-left: 1.6rem;
    padding-right: 1.6rem;
  }
}

/* Post title styling */
#main.index .post-group .post-title {
  color: var(--fg);
  font-size: 17px;
  font-weight: bold;
  position: relative;
  display: inline-block;
  transition: opacity 0.2s ease;
}

/* Hover styles: make text darker and underline the title */
#main.index .post-group .post-item-link:hover .post-info .post-title {
  color: var(--fg);
  text-decoration: underline;
  text-decoration-color: color-mix(in srgb, var(--fg2) 20%, transparent);
  text-underline-offset: 2px;
}

#main.index .post-group .post-item-link:hover .post-info .post-subtitle {
  color: var(--fg);
}

#main.index .post-group .post-item-link:hover .author,
#main.index .post-group .post-item-link:hover time,
#main.index .post-group .post-item-link:hover .desktop-time,
#main.index .post-group .post-item-link:hover .mobile-time {
  color: var(--fg3);
}

/* Blog page title styling */
.blog-page-title {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 600;
  text-align: left;
  margin: 0;
  margin-bottom: 0.5rem;
  padding-top: 0.5rem;
  line-height: 1.1;
}

/* Blog page description - only on blog listing page */
main.list .content {
  font-style: italic;
}

.content figure svg,
figure svg {
  display: block;
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
  height: auto;
}

figure.half-width {
  margin-left: auto;
  margin-right: auto;
  max-width: 620px;
}

figure.half-width.matmul,
figure.half-width + figcaption,
figure > figcaption {
  text-align: center;
}

.ascii-art {
  font-family: monospace !important;
  font-size: clamp(0rem, 1.2vw, 0.8rem);
  line-height: 1.2;
  text-align: center;
  overflow-x: clip !important;
  /* Override asymmetric padding from .content pre (which has extra right padding for copy button) */
  padding: 1rem !important;
}

/* General content typography styles */
.content {
  padding-top: 0.5rem;
}

.content .MathJax {
  font-size: 100% !important;
  overflow-x: auto;
  overflow-y: hidden;
}

.content .katex {
  font-size: 100% !important;
  overflow-x: auto;
  overflow-y: hidden;
  padding-bottom: 1rem;
}

.content :last-child {
  margin-bottom: 0;
}

.content a {
  text-decoration: underline;
  text-decoration-color: color-mix(in srgb, var(--fg4) 30%, transparent);
  transition: color 0.3s ease-in-out, text-decoration-color 0.3s ease-in-out;
}

.content a:hover {
  color: var(--fg2);
  text-decoration: underline;
  text-decoration-color: color-mix(in srgb, var(--fg2) 30%, transparent);
}

.content a.footnote-ref {
  text-decoration: none;
}

.content a.footnote-ref::before {
  content: "[";
}

.content a.footnote-ref::after {
  content: "]";
}

.content blockquote {
  background-color: var(--bg_s);
  border-left: none;
  font-style: normal;
  padding: 0 1.25rem;
  margin: 1.2rem 0 1.2rem 1rem;
}

.content blockquote blockquote {
  background-color: var(--bg1);
}

/* Epigraph style (Tufte-inspired) */
.content blockquote.epigraph {
  background: transparent;
  border: none;
  color: var(--fg2);
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.5;
  margin: 1.2rem 0 1.2rem 1rem;
  max-width: 100%;
  padding: 0 1.25rem;
  position: relative;
}
.content blockquote.epigraph::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.2rem;
  bottom: 0.2rem;
  width: 3px;
  background-color: var(--fg5);
  opacity: 0.6;
}

.content pre {
  background-color: var(--bg_code) !important;
  border-radius: 0.2rem;
  font-family: "SF Mono", "Monaco", "Inconsolata", "Fira Code", monospace;
  position: relative;
  overflow-x: auto;
  padding: 1rem 2rem 1rem 1rem; /* default top padding for blocks without language */
  -webkit-text-size-adjust: none; /* prevent iOS font boosting */
  text-size-adjust: none;
  font-variant-ligatures: none;
  /* letter-spacing: 0; keep tracking tight */
  font-weight: 400;
}

/* Increase top padding only when language label is present */
.content pre:has(code[data-lang]) {
  padding-top: 2rem;
}

/* Copy button styles */
.code-block-wrapper {
  position: relative;
}
button.copy-button {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  left: auto;
  background-color: transparent;
  color: var(--fg4);
  border: none;
  border-radius: 0.3rem;
  padding: 0.4rem;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.2s ease-in-out, background-color 0.15s ease-in-out,
    color 0.15s ease-in-out;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.code-block-wrapper:hover .copy-button,
.content pre:hover button.copy-button {
  opacity: 1;
}

button.copy-button:hover {
  opacity: 1 !important;
  background-color: color-mix(in srgb, var(--fg4) 8%, transparent);
  color: var(--fg2);
}

button.copy-button svg {
  width: 1rem;
  height: 1rem;
  fill: currentColor;
}

.content pre code {
  padding: 0;
  color: var(--fg3); /* slightly darker to match prod */
  font-family: inherit; /* inherit monospace from pre */
  padding: 0 0.8rem 0 0.2rem;
  font-size: 13px;
  /* Preserve original lines; allow horizontal scroll on container */
  white-space: pre;
  word-break: normal;
  overflow-wrap: normal;
  display: block;
  line-height: 1.4;
  -webkit-text-size-adjust: none; /* ensure nested spans don't inflate */
  text-size-adjust: none;
  letter-spacing: 0;
  font-weight: 400;
}

/* Improve text selection contrast inside code blocks */
.content pre::selection,
.content pre code::selection,
.content pre *::selection {
  background-color: #d0d0d0;
}
.content pre::-moz-selection,
.content pre code::-moz-selection,
.content pre *::-moz-selection {
  background-color: #d0d0d0;
}

.darkmode .content pre::selection,
.darkmode .content pre code::selection,
.darkmode .content pre *::selection {
  background-color: rgba(255, 255, 255, 0.5);
  color: var(--bg);
}
.darkmode .content pre::-moz-selection,
.darkmode .content pre code::-moz-selection,
.darkmode .content pre *::-moz-selection {
  background-color: rgba(255, 255, 255, 0.5);
  color: var(--bg);
}

/* Language label chip shown at top-left of code blocks */
.content pre code[data-lang]::before {
  content: attr(data-lang);
  position: absolute;
  top: 0.45rem;
  left: 0.75rem;
  z-index: 5;
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 11px;
  letter-spacing: 0.02em;
  color: var(--fg4);
  padding: 0;
  text-transform: lowercase;
  pointer-events: none;
}

.content code {
  padding: 0;
  color: var(--red);
  font-family: SFMono-Regular, "SF Mono", ui-monospace, Menlo, Monaco, Consolas,
    "Liberation Mono", "Courier New", monospace;
  padding: 0 0.2rem 0 0.2rem;
  font-size: 0.9em;
  text-wrap: wrap;
  display: inline;
}

.content mark {
  background-color: var(--bg_s);
  color: var(--fg1);
  border-radius: 0.2rem;
  padding: 0 0.2rem;
}

.content kbd {
  background-color: var(--bg_s);
  color: var(--fg1);
  border-radius: 0.2rem;
}

.content table {
  display: block;
  overflow-x: auto;
  margin: auto;
  background-color: var(--bg);
  border-collapse: collapse;
  border: none;
}

.content table td,
.content table th {
  border: var(--fg4) 1px solid;
  padding: 0.75rem 0.75rem;
}
.content table td {
  vertical-align: top;
  font-size: 1rem;
}

.content table th {
  background-color: var(--bg_s);
  font-weight: bold;
}
/*
.content ul {
  list-style: square;
  margin-left: 1.5rem;
  margin-top: 1rem;
  margin-bottom: 1.2rem;
}

.content ul > li {
  margin-bottom: 0.2rem;
}

.content ol {
  list-style: decimal;
  margin-left: 2rem;
  margin-top: 1rem;
  margin-bottom: 1.2rem;
}

.content ol > li {
  margin-bottom: 0.2rem;
}
*/
/* Nested ordered lists use lowercase letters */
.content ol ol {
  list-style-type: lower-alpha;
}

h1

/* Only for blog title */
.content h1 {
      display: block;
    font-size: 2em;
    margin-block-start: 0.67em;
    margin-block-end: 0.67em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    font-weight: bold;
height: 70px;
}



/* Center-align the main page title on legal pages */
#main.content article.content h1:first-child {
  text-align: center;

}

/* Tighten spacing between legal page title and the Last updated line */
#main.content article.content h1 + h3 {

  text-align: center; /* ensure centered regardless of inline styles */
}

#tekst{
max-width:480px;
text-align:left;
margin-top:40px;
}


.content strong.chinese {
  font-weight: normal;
  text-emphasis-style: dot;
  text-emphasis-position: under;
  -webkit-text-emphasis-style: dot;
  -webkit-text-emphasis-position: under;
}

/* Back to top link hover */
#back-to-top:hover {
  text-decoration: underline !important;
}

:root {
  --code-red: #cb071d; /* primary red (used for numbers, errors) */
  --code-green: #7eac21; /* provided lighter green */
  --code-yellow: #a47d00;
  --code-blue: #0277aa; /* provided lighter blue */
  --code-magenta: #ae166b; /* true magenta accent */
  --code-purple: var(--code-blue);
  --code-aqua: #1b8ea6;
  --code-orange: #c44d5a;
  --code-gray: #5f6672;
  --code-comment: #6f7d8d; /* provided purple-grey for comments */
  --code-namespace: #6b1e3c; /* maroon for module names */
  --code-red-dim: #cc4b4b;
  --code-green-dim: #94c846;
  --code-yellow-dim: #916f00;
  --code-blue-dim: #2a93c3;
  --code-magenta-dim: #c33985;
  --code-purple-dim: #5f50bc;
  --code-aqua-dim: #187d92;
  --code-gray-dim: #4a515c;
  --code-orange-dim: #ad4450;
  --code-hover-bg: rgba(128, 128, 128, 0.1);
}
.darkmode {
  --code-red: #ff7a86; /* dark-mode red aligned with primary red */
  --code-green: #b6d968; /* lighter green */
  --code-yellow: #ffd36e;
  --code-blue: #5fb6de; /* lighter blue */
  --code-magenta: #ff66b3; /* magenta accent for dark */
  --code-purple: var(--code-blue);
  --code-aqua: #95e3f2;
  --code-gray: #b0b0b0;
  --code-comment: #9aa9b7; /* purple-grey */
  --code-namespace: #d07b9a; /* maroon tint in dark mode */
  --code-orange: #ff9bb3;
  --code-red-dim: #ffa3a3;
  --code-green-dim: #c9e58a;
  --code-yellow-dim: #ffe393;
  --code-blue-dim: #7ec6e6;
  --code-magenta-dim: #ff85c4;
  --code-purple-dim: #e4d7ff;
  --code-aqua-dim: #b8effa;
  --code-gray-dim: #c8c8c8;
  --code-orange-dim: #ffc0d0;
  --code-hover-bg: rgba(128, 128, 128, 0.3);
}

/* Background */
.bg {
  color: var(--fg);
  background-color: var(--bg);
}
/* PreWrapper */
.chroma {
  color: var(--fg2);
  background-color: var(--bg);
}
/* Other */
.chroma .x {
  color: var(--code-gray);
}
/* Error */
.chroma .err {
  color: var(--code-red);
}
/* CodeLine */
.chroma .cl {
  color: inherit;
}
/* LineLink */
.chroma .lnlinks {
  outline: none;
  text-decoration: none;
  color: inherit;
}
/* LineTableTD */
.chroma .lntd {
  vertical-align: top;
  padding: 0;
  margin: 0;
  border: 0;
}
/* LineTable */
.chroma .lntable {
  border-spacing: 0;
  padding: 0;
  margin: 0;
  border: 0;
}
/* LineHighlight */
.chroma .hl {
  background-color: var(--bg1);
}
/* LineNumbersTable */
.chroma .lnt {
  white-space: pre;
  -webkit-user-select: none;
  user-select: none;
  margin-right: 0.4em;
  padding: 0 0.4em 0 0.4em;
  color: var(--fg4);
}
/* LineNumbers */
.chroma .ln {
  white-space: pre;
  -webkit-user-select: none;
  user-select: none;
  margin-right: 0.4em;
  padding: 0 0.4em 0 0.4em;
  color: var(--fg4);
}
/* Line */
.chroma .line {
  display: flex;
}
/* Keyword */
.chroma .k {
  color: var(--code-blue);
}
/* KeywordConstant (e.g., True/False/None) */
.chroma .kc {
  color: var(--code-magenta);
}
/* KeywordDeclaration */
.chroma .kd {
  color: var(--code-red);
}
/* KeywordNamespace */
.chroma .kn {
  color: var(--code-blue);
}
/* KeywordPseudo */
.chroma .kp {
  color: var(--code-blue);
}
/* KeywordReserved */
.chroma .kr {
  color: var(--code-blue);
}
/* KeywordType */
.chroma .kt {
  color: var(--code-red);
}
/* Name */
.chroma .n {
  color: var(--fg2);
}
/* NameAttribute */
.chroma .na {
  color: var(--code-blue);
}
/* NameClass */
.chroma .nc {
  color: var(--code-yellow);
}
/* NameConstant */
.chroma .no {
  color: var(--code-yellow);
}
/* NameDecorator */
.chroma .nd {
  color: var(--code-blue);
  font-weight: bold;
}
/* NameEntity */
.chroma .ni {
  color: var(--code-aqua);
}
/* NameException (e.g., RuntimeError) */
.chroma .ne {
  color: var(--code-blue);
}
/* NameLabel */
.chroma .nl {
  color: var(--code-aqua);
}
/* NameNamespace (e.g., imported module names) */
.chroma .nn {
  color: var(--code-namespace);
}
/* NameOther */
.chroma .nx {
  color: var(--fg4);
}
/* NameProperty */
.chroma .py {
  color: var(--code-orange);
}
/* NameTag */
.chroma .nt {
  color: var(--code-blue);
}
/* NameBuiltin */
.chroma .nb {
  color: var(--code-blue);
}
/* NameBuiltinPseudo */
.chroma .bp {
  color: var(--code-blue);
}
/* NameVariable */
.chroma .nv {
  color: var(--fg);
}
/* NameVariableClass */
.chroma .vc {
  color: var(--fg);
}
/* NameVariableGlobal */
.chroma .vg {
  color: var(--fg);
}
/* NameVariableInstance */
.chroma .vi {
  color: var(--fg);
}
/* NameVariableMagic */
.chroma .vm {
  color: var(--fg);
}
/* NameFunction */
.chroma .nf {
  color: var(--code-blue);
}
/* NameFunctionMagic */
.chroma .fm {
  color: var(--code-blue);
}
/* Literal */
.chroma .l {
  color: var(--fg2);
}
/* LiteralDate */
.chroma .ld {
  color: var(--fg2);
}
/* LiteralString */
.chroma .s {
  color: var(--code-green);
}
/* LiteralStringAffix (e.g., f/r/b prefixes) */
.chroma .sa {
  color: var(--code-blue);
}
/* LiteralStringBacktick */
.chroma .sb {
  color: var(--code-green);
}
/* LiteralStringChar */
.chroma .sc {
  color: var(--code-green);
}
/* LiteralStringDelimiter */
.chroma .dl {
  color: var(--code-blue);
}
/* LiteralStringDoc */
.chroma .sd {
  color: var(--fg2);
}
/* LiteralStringDouble */
.chroma .s2 {
  color: var(--code-green);
}
/* LiteralStringEscape */
.chroma .se {
  color: var(--code-blue);
}
/* LiteralStringHeredoc */
.chroma .sh {
  color: var(--fg2);
}
/* LiteralStringInterpol */
.chroma .si {
  color: var(--code-green);
}
/* LiteralStringOther */
.chroma .sx {
  color: var(--code-green);
}
/* LiteralStringRegex */
.chroma .sr {
  color: var(--code-aqua);
}
/* LiteralStringSingle */
.chroma .s1 {
  color: var(--code-green);
}
/* LiteralStringSymbol */
.chroma .ss {
  color: var(--code-green);
}
/* LiteralNumber */
.chroma .m {
  color: var(--code-red);
}
/* LiteralNumberBin */
.chroma .mb {
  color: var(--code-red);
}
/* LiteralNumberFloat */
.chroma .mf {
  color: var(--code-red);
}
/* LiteralNumberHex */
.chroma .mh {
  color: var(--code-red);
}
/* LiteralNumberInteger */
.chroma .mi {
  color: var(--code-red);
}
/* LiteralNumberIntegerLong */
.chroma .il {
  color: var(--code-red);
}
/* LiteralNumberOct */
.chroma .mo {
  color: var(--code-red);
}
/* Operator */
.chroma .o {
  color: color-mix(in srgb, var(--fg2) 70%, transparent);
  font-weight: normal;
}
/* OperatorWord */
.chroma .ow {
  color: color-mix(in srgb, var(--fg2) 70%, transparent);
  font-weight: normal;
}
/* Punctuation (slightly lighter than default gray) */
.chroma .p {
  color: color-mix(in srgb, var(--fg2) 85%, white);
}
/* Comment */
.chroma .c {
  color: var(--code-comment);
  font-style: normal;
}
/* CommentHashbang */
.chroma .ch {
  color: var(--code-comment);
  font-style: normal;
}
/* CommentMultiline */
.chroma .cm {
  color: var(--code-comment);
  font-style: normal;
}
/* CommentSingle */
.chroma .c1 {
  color: var(--code-comment);
  font-style: normal;
}
/* CommentSpecial */
.chroma .cs {
  color: var(--code-comment);
  font-style: normal;
}
/* CommentPreproc */
.chroma .cp {
  color: var(--code-comment);
  font-style: normal;
}
/* CommentPreprocFile */
.chroma .cpf {
  color: var(--code-comment);
  font-weight: bold;
  font-style: normal;
}
/* Generic */
.chroma .g {
  color: var(--fg4);
}
/* GenericDeleted */
.chroma .gd {
  color: var(--code-red);
  background-color: var(--bg1);
}
/* GenericEmph */
.chroma .ge {
  font-style: italic;
}
/* GenericError */
.chroma .gr {
  color: var(--code-red);
}
/* GenericHeading */
.chroma .gh {
  color: var(--code-orange);
  font-weight: bold;
}
/* GenericInserted */
.chroma .gi {
  color: var(--code-green);
  background-color: var(--bg1);
}
/* GenericOutput */
.chroma .go {
  color: var(--fg2);
}
/* GenericPrompt */
.chroma .gp {
  color: var(--fg2);
}
/* GenericStrong */
.chroma .gs {
  font-weight: bold;
}
/* GenericSubheading */
.chroma .gu {
  color: var(--code-orange);
  font-weight: bold;
}
/* GenericTraceback */
.chroma .gt {
  color: var(--code-red);
}
/* GenericUnderline */
.chroma .gl {
  text-decoration: underline;
}
/* TextWhitespace */
.chroma .w {
  color: var(--fg4);
}

.logo-container span {
  display: block;
  height: 26px;
  text-align: left;
  position: relative;
  top: 0;
  left: 0;
}

.logo-container .son {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 24px;
}
.logo-container .en {
  position: relative;
  top: -8px;
  left: -10px;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 14px;
}
.logo-container .co {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 24px;
  position: relative;
  top: -30px;
  left: 0px;
}
