body {
  margin: 0;
  padding: 0;
  height: 100vh;
}

/* Monokai theme for code tokens (AI generated) */
[data-theme='dark'] .sl-code-viewer{
  background: #272822 !important;
  color: #f8f8f2 !important;
}
[data-theme='dark'] .token.variable {
  color: #fd971f !important;
}
[data-theme='dark'] .token.plain {
  color: #f8f8f2 !important;
}
[data-theme='dark'] .token.string {
  color: #e6db74 !important;
}
[data-theme='dark'] .token.property {
  color: #a6e22e !important;
}
[data-theme='dark'] .token.number {
  color: #ae81ff !important;
}
[data-theme='dark'] .token.boolean {
  color: #ae81ff !important;
}
[data-theme='dark'] .token.keyword {
  color: #f92672 !important;
}
[data-theme='dark'] .token.keyword.null {
  color: #f92672 !important;
}
[data-theme='dark'] .token.keyword.control-flow {
  color: #f92672 !important;
}
[data-theme='dark'] .token.method {
  color: #a6e22e !important;
}
[data-theme='dark'] .token.function {
  color: #a6e22e !important;
}
[data-theme='dark'] .token.property-access {
  color: #a6e22e !important;
}
[data-theme='dark'] .token.operator {
  color: #f92672 !important;
}
[data-theme='dark'] .token.punctuation {
  color: #f8f8f2 !important;
}
[data-theme='dark'] .token.comment {
  color: #75715e !important;
}
[data-theme='dark'] .token.class-name {
  color: #66d9ef !important;
}
[data-theme='dark'] .token.constant {
  color: #ae81ff !important;
}
[data-theme='dark'] .token.tag {
  color: #f92672 !important;
}
[data-theme='dark'] .token.attr-name {
  color: #a6e22e !important;
}
[data-theme='dark'] .token.attr-value {
  color: #e6db74 !important;
}
[data-theme='dark'] .token.selector {
  color: #f92672 !important;
}
[data-theme='dark'] .token.important,
[data-theme='dark'] .token.bold {
  font-weight: bold;
}
[data-theme='dark'] .token.italic {
  font-style: italic;
}
[data-theme='dark'] .token.entity {
  cursor: help;
}
[data-theme='dark'] .token.plain {
  color: #f8f8f2 !important;
}
[data-theme='dark'] .token.string {
  color: #e6db74 !important;
}
[data-theme='dark'] .token.property {
  color: #a6e22e !important;
}
[data-theme='dark'] .token.number {
  color: #ae81ff !important;
}
[data-theme='dark'] .token.boolean {
  color: #ae81ff !important;
}
[data-theme='dark'] .token.keyword {
  color: #f92672 !important;
}
[data-theme='dark'] .token.keyword.null {
  color: #f92672 !important;
}
[data-theme='dark'] .token.keyword.control-flow {
  color: #f92672 !important;
}
[data-theme='dark'] .token.method {
  color: #a6e22e !important;
}
[data-theme='dark'] .token.function {
  color: #a6e22e !important;
}
[data-theme='dark'] .token.property-access {
  color: #a6e22e !important;
}
[data-theme='dark'] .token.operator {
  color: #f92672 !important;
}
[data-theme='dark'] .token.punctuation {
  color: #f8f8f2 !important;
}

/** @modified version of: https://codepen.io/jascha/pen/mjReVZ */
#sun-moon {
  position: fixed;
  top: 10px;
  right: 32px;
  z-index: 1000;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  transition: background-color .5s ease;
  overflow: hidden;
}

#sun-moon:before {
  content: "";
  z-index: 1;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 50%;
  background: #A5ABB0;
}

#sun-moon:after {
  content: "";
  z-index: 2;
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 4px solid transparent;
}

[data-theme='dark'] #sun-moon {
  background-color: #a5abb0;
}

[data-theme='dark'] #sun-moon:before {
  background: #3f3f4c;
  border-radius: 50%;
  width: 150%;
  transform: translate(-5%,-35%) rotate(-25deg);
}

[data-theme='dark'] #sun-moon:after {
  content: "";
  border-color: #3f3f4c;
}
