code {
  padding: 2px 6px;
  font-family: 'Courier New', monospace;
}

.tabs {
  width: 100%;
  margin-bottom: 10px;
}

.code_container {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 20px;
}

pre {
  flex: 1 1 calc(50% - 0.5rem);
  width: 100%;
  margin: 0;
  overflow: auto;
}

pre code {
  display: block;
  overflow: auto;
  font-size: 1rem;
  scrollbar-width: none;
  -ms-overflow-style: none;
  height: 420px;
  border-radius: 10px;
  box-sizing: border-box;
}

.white pre code {
   height: 220px;
}

pre code::-webkit-scrollbar {
  display: none;
}

.tab_content {
  display: none;
  padding: 20px;
  border: 1px solid #ccc;
  border-radius: 0 0 10px 10px;
}

.tab_content.active {
  display: block;
  width: 100%;
  background: hsl(270, 50%, 95%);
}

.white .tab_content.active {
  background: hsl(270, 50%, 99%);
}
.tab_btns {
  display: flex;
  background-color: hsl(270, 50%, 80%);
  border-radius: 10px 10px 0 0;
}

.tab_btn {
  appearance: none;
  -webkit-appearance: none;
  background-color: hsl(270, 50%, 80%);
  border: none;
  border-right: 1px solid hsl(270, 50%, 98%);
  /* does not work?*/
  padding: 0px 20px 0px 20px;
  height: 42px;
  margin: 0;
  font: inherit;
  color: inherit;
  cursor: pointer;
}

/* First button - left rounded corners, no left border */
.tab_btn:first-child {
  border-radius: 10px 0 0 0;
  border-left: none;
  /* Remove left border from first button */
}

.tab_btn:hover {
  background: hsl(270, 50%, 75%);
}

.tab_btn.active {
  background-color: hsl(270, 50%, 60%);
  color: white;
  font-weight: bold;
}