:root {
  --color-shortcode-tab-label-bottom: #444444;
  --color-shortcode-tab-labels-bottom: #dddddd;
}

.dark {
  --color-shortcode-tab-label-bottom: #cccccc;
  --color-shortcode-tab-labels-bottom: #444444;
}

.shortcode-tab {
  margin: 1em auto;
  overflow: hidden;
  display: flex;
  flex-wrap: wrap;
}

.shortcode-tab input {
  height: 0;
  width: 0;
  overflow: hidden;
  opacity: 0;
  position: absolute;
}

.shortcode-tab input[type=radio]+label {
  cursor: pointer;
  display: inline-block;
  padding: 0.5em 1em;
  border-bottom: 2px transparent;
  transition: border-color 0.5s ease-out;
  color: color-mix(in srgb, currentColor 50%, transparent);
  font-weight: bold;
}

.shortcode-tab input[type=radio]:checked+label {
  border-bottom: 2px solid var(--color-shortcode-tab-label-bottom);
  color: var(--body-foreground);
}

.shortcode-tab input[type=radio]:checked+label+.shortcode-tab-item {
  display: block;
}

.shortcode-tab .shortcode-tab-item {
  order: 999;
  width: 100%;
  border-top: 1px solid var(--color-shortcode-tab-labels-bottom);
  display: none
}

.shortcode-tab-border .shortcode-tab-item {
  padding-left: 1em;
  padding-right: 1em;
}
