.left {
    width: auto;
    max-width: 100%;
}

.right {
    background: #232323;
    color: #fff;
    max-width: 0;
}

.left, .right {
    box-sizing: border-box;
    padding: 10px 15px;
    flex: 1;
    min-width: 50%;
}

.code-example.svelte-fapltk .header.svelte-fapltk {
    display: flex;
    justify-content: space-between;
    background: #404040;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
}

.code-example.svelte-fapltk .header .title.svelte-fapltk, .code-example.svelte-fapltk .header .copy a.svelte-fapltk {
    padding: 8px 15px;
}

.code-example.svelte-fapltk .header .copy a.svelte-fapltk {
    display: inline-block;
    text-decoration: none !important;
    color: #fff;
    background: #333;
}

.hljs {
    padding: 0;
    background: transparent;
}

.hljs {
    display: block;
    overflow-x: auto;
    padding: 0.5em;
    background: #272822;
    color: #ddd;
}

.hljs-string, .hljs-bullet, .hljs-subst, .hljs-title, .hljs-section, .hljs-emphasis, .hljs-type, .hljs-built_in, .hljs-builtin-name, .hljs-selector-attr, .hljs-selector-pseudo, .hljs-addition, .hljs-variable, .hljs-template-tag, .hljs-template-variable {
    color: #a6e22e;
}

.anchor.svelte-fapltk {
    display: block;
    position: relative;
    top: -60px;
    visibility: hidden;
    height: 0;
}

.request-title {
    font-weight: 600;
}

.request-title strong.get {
    background: #7d69cb;
}

.request-title strong {
    display: inline-block;
    padding: 5px 8px;
    text-transform: uppercase;
    color: #fff;
    border-radius: 3px;
    margin-right: 10px;
    font-size: 17px;
    background: #1c90b4;
}

strong {
    font-weight: bold;
}

pre.url.svelte-fapltk {
    padding: 8px;
    background: #e9e9e9;
    border: 1px solid #d4d4d4;
    border-radius: 2px;
    overflow-x: auto;
}

pre {
    display: block;
    font-family: monospace;
    white-space: pre;
    margin: 1em 0px;
}

table.errorTable {
    width: 100%;
    background-color: #ffffff;
    border-collapse: collapse;
    border-width: 2px;
    border-color: #ffcc00;
    border-style: solid;
    color: #000000;
    text-align: center;
  }
  
  table.errorTable td, table.errorTable {
    border-width: 2px;
    border-color: #ff7587;
    border-style: solid;
    padding: 3px;
    word-wrap: break-word
  }

  table thead {
      color: white
  }
  
  table.errorTable thead {
    background-color: #ff7587;
  }


  #snackbar {
    visibility: hidden; /* Hidden by default. Visible on click */
    min-width: 250px; /* Set a default minimum width */
    margin-left: -125px; /* Divide value of min-width by 2 */
    background-color: #333; /* Black background color */
    color: #fff; /* White text color */
    text-align: center; /* Centered text */
    border-radius: 2px; /* Rounded borders */
    padding: 16px; /* Padding */
    position: fixed; /* Sit on top of the screen */
    z-index: 1; /* Add a z-index if needed */
    left: 50%; /* Center the snackbar */
    bottom: 30px; /* 30px from the bottom */
  }
  
  /* Show the snackbar when clicking on a button (class added with JavaScript) */
  #snackbar.show {
    visibility: visible; /* Show the snackbar */
    /* Add animation: Take 0.5 seconds to fade in and out the snackbar.
    However, delay the fade out process for 2.5 seconds */
    -webkit-animation: fadein 0.5s, fadeout 0.5s 3.5s;
    animation: fadein 0.5s, fadeout 0.5s 3.5s;
  }
  
  /* Animations to fade the snackbar in and out */
  @-webkit-keyframes fadein {
    from {bottom: 0; opacity: 0;}
    to {bottom: 30px; opacity: 1;}
  }
  
  @keyframes fadein {
    from {bottom: 0; opacity: 0;}
    to {bottom: 30px; opacity: 1;}
  }
  
  @-webkit-keyframes fadeout {
    from {bottom: 30px; opacity: 1;}
    to {bottom: 0; opacity: 0;}
  }
  
  @keyframes fadeout {
    from {bottom: 30px; opacity: 1;}
    to {bottom: 0; opacity: 0;}
  }