pre code.hljs {
  display: block;
  overflow-x: auto;
  padding: 1em
}
code.hljs {
  padding: 3px 5px
}
/*!
  Theme: Default
  Description: Original highlight.js style
  Author: (c) Ivan Sagalaev <maniac@softwaremaniacs.org>
  Maintainer: @highlightjs/core-team
  Website: https://highlightjs.org/
  License: see project LICENSE
  Touched: 2021
*/
/*
This is left on purpose making default.css the single file that can be lifted
as-is from the repository directly without the need for a build step

Typically this "required" baseline CSS is added by `makestuff.js` during build.
*/
pre code.hljs {
  display: block;
  overflow-x: auto;
  padding: 1em
}
code.hljs {
  padding: 3px 5px
}
/* end baseline CSS */
.hljs {
  background: #F3F3F3;
  color: #444
}
/* Base color: saturation 0; */
.hljs-subst {
  /* default */
  
}
/* purposely ignored */
.hljs-formula,
.hljs-attr,
.hljs-property,
.hljs-params {
  
}
.hljs-comment {
  color: #697070
}
.hljs-tag,
.hljs-punctuation {
  color: #444a
}
.hljs-tag .hljs-name,
.hljs-tag .hljs-attr {
  color: #444
}
.hljs-keyword,
.hljs-attribute,
.hljs-selector-tag,
.hljs-meta .hljs-keyword,
.hljs-doctag,
.hljs-name {
  font-weight: bold
}
/* User color: hue: 0 */
.hljs-type,
.hljs-string,
.hljs-number,
.hljs-selector-id,
.hljs-selector-class,
.hljs-quote,
.hljs-template-tag,
.hljs-deletion {
  color: #880000
}
.hljs-title,
.hljs-section {
  color: #880000;
  font-weight: bold
}
.hljs-regexp,
.hljs-symbol,
.hljs-variable,
.hljs-template-variable,
.hljs-link,
.hljs-selector-attr,
.hljs-operator,
.hljs-selector-pseudo {
  color: #ab5656
}
/* Language color: hue: 90; */
.hljs-literal {
  color: #695
}
.hljs-built_in,
.hljs-bullet,
.hljs-code,
.hljs-addition {
  color: #397300
}
/* Meta color: hue: 200 */
.hljs-meta {
  color: #1f7199
}
.hljs-meta .hljs-string {
  color: #38a
}
/* Misc effects */
.hljs-emphasis {
  font-style: italic
}
.hljs-strong {
  font-weight: bold
}
body {
  margin: 0;
  padding: 0;
  font-family: sans-serif;
  background: #f3f4fa;
}

.header {
  background-color: #00021e;
  padding: 20px;
  color: white;
  text-align: center;
}
.header .logo {
  animation: spin infinite 20s linear;
  height: 80px;
}
.header .title {
  font-size: 1.5em;
}
.header .intro {
  font-size: large;
}

.content {
  padding: 0 20px 20px 20px;
}

.tools .example-selector {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
}
.tools .example-selector h4 {
  margin: 0 10px 0 0;
}
.tools .example-selector select {
  background: #fff;
  border-radius: 9px;
  height: 30px;
  border: 0;
  padding: 0 10px;
  outline: none;
}
.tools .toggle-panel {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 10px;
}
.tools .toggle-panel:hover {
  cursor: pointer;
}

.demo-wrapper {
  display: flex;
}
.demo-wrapper .props-panel {
  margin-right: 30px;
}
.demo-wrapper .props-panel.hide {
  display: none;
}
.demo-wrapper .props-panel .expand-hint {
  font-family: monospace;
  font-style: italic;
  text-align: right;
  padding: 10px;
  margin: 0;
}
.demo-wrapper .props-panel .expand-hint:hover {
  cursor: pointer;
}
.demo-wrapper .demoform {
  width: 100%;
  margin-top: 20px;
}
.demo-wrapper .demoform .buttons {
  margin-bottom: 20px;
  text-align: center;
}
.demo-wrapper .demoform .demo {
  background: #fff;
  border-radius: 9px;
  padding: 20px;
  margin-top: 20px;
}

.action-button {
  margin-right: 10px;
  background-color: #0069ed;
  color: #ffffff;
  border: 1px solid;
  font-size: 1rem;
  line-height: 1;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  cursor: pointer;
  text-align: center;
}
.action-button:hover {
  background-color: #0053ba;
}
.action-button:active {
  transform: scale(0.99);
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.hljs {
  background: none;
  padding: 0 !important;
}
.hljs pre {
  overflow-x: auto;
  margin: 0;
}

.react-tabs {
  max-width: 400px;
  margin: 40px auto 20px auto;
  padding: 0;
  background: #fff;
  border-radius: 9px;
  display: inline-block;
}
.react-tabs .react-tabs__tab-list {
  list-style: none;
  display: flex;
  margin-top: -18px;
  margin-bottom: 0;
  justify-content: center;
  padding-left: 10px;
  padding-right: 10px;
}
.react-tabs .react-tabs__tab-list .react-tabs__tab {
  display: inline;
  background-color: #0069ed;
  color: #ffffff;
  font-size: 1rem;
  line-height: 1;
  padding: 0.5rem 2rem;
  cursor: pointer;
}
.react-tabs .react-tabs__tab-list .react-tabs__tab:first-child {
  border-radius: 5px 0 0 5px;
}
.react-tabs .react-tabs__tab-list .react-tabs__tab:last-child {
  border-radius: 0 5px 5px 0;
}
.react-tabs .react-tabs__tab-list .react-tabs__tab.react-tabs__tab--selected {
  background-color: #0047a1;
}
.react-tabs .panel-wrapper {
  overflow: scroll;
  padding: 0 15px;
}
.react-tabs .panel-wrapper .react-tabs__tab-panel {
  display: none;
}
.react-tabs
  .panel-wrapper
  .react-tabs__tab-panel.react-tabs__tab-panel--selected {
  display: block;
}
