* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  color-scheme: light dark;
  height: 100%;
  font-family: system-ui, -apple-system, sans-serif;
}

body {
  background: #2d2d2d;
  flex-direction: column;
  display: flex;
}

header {
  background: #2d2d2d;
  border-bottom: 1px solid #2d2d2d;
  gap: .5rem;
  padding: .5rem;
  display: flex;
}

.toggle {
  color: #8892b0;
  cursor: pointer;
  background: #2d2d2d;
  border: none;
  padding: .4rem .8rem;
  font-size: .8rem;
}

.toggle.active {
  color: #2d2d2d;
  background: pink;
}

.container {
  flex: 1;
  min-height: 0;
  display: flex;
}

.panel {
  border-left: 1px solid #fff;
  flex-direction: column;
  flex: 1;
  min-width: 0;
  display: flex;
}

.panel:first-child {
  border-left: none;
}

.panel.hidden {
  display: none;
}

.panel-header {
  color: #8892b0;
  text-transform: uppercase;
  letter-spacing: .05em;
  background: #2d2d2d;
  border-bottom: 1px solid #fff;
  padding: .5rem 1rem;
  font-size: .7rem;
  font-weight: 600;
}

.panel-content {
  color: #ccd6f6;
  background: #2d2d2d;
  flex: 1;
  padding: 1rem;
  font-size: .85rem;
  line-height: 1.5;
  overflow: auto;
}

textarea.panel-content {
  resize: none;
  border: none;
  outline: none;
  width: 100%;
  height: 100%;
  font-family: JetBrains Mono, Fira Code, monospace;
}

pre.panel-content {
  white-space: pre-wrap;
  word-break: break-word;
  margin: 0;
  font-family: JetBrains Mono, Fira Code, monospace;
}

pre.panel-content code {
  font-family: inherit;
  font-size: inherit;
  background: none;
}

#html-preview h1, #html-preview h2, #html-preview h3 {
  color: #e6f1ff;
  margin: 1rem 0 .5rem;
}

#html-preview h1:first-child {
  margin-top: 0;
}

#html-preview h1 {
  border-bottom: 1px solid #2d2d2d;
  padding-bottom: .3rem;
  font-size: 1.5rem;
}

#html-preview h2 {
  font-size: 1.2rem;
}

#html-preview p {
  margin: .75rem 0;
}

#html-preview a {
  color: #64ffda;
}

#html-preview strong {
  color: #e6f1ff;
}

#html-preview code {
  background: #2d2d2d;
  border-radius: 3px;
  padding: .15em .3em;
  font-family: monospace;
  font-size: .9em;
}

#html-preview pre {
  background: #1d1d1d;
  border-radius: 4px;
  margin: .75rem 0;
  padding: .75rem;
  overflow-x: auto;
}

#html-preview pre code {
  background: none;
  padding: 0;
}

#html-preview ul, #html-preview ol {
  margin: .75rem 0;
  padding-left: 1.25rem;
}

#html-preview li {
  margin: .3rem 0;
}

#html-preview hr {
  border: none;
  border-top: 1px solid #2d2d2d;
  margin: 1rem 0;
}

::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

::-webkit-scrollbar-track {
  background: #1a1a2e;
}

::-webkit-scrollbar-thumb {
  background: #2d2d2d;
  border-radius: 3px;
}
/*# sourceMappingURL=hack-ld.2cdaf7bc.css.map */
