/* .mlp-tab-header {
  display: flex;
  border-bottom: 2px solid #ccc;
  margin-bottom: 1em;
}

.mlp-global-toggle {
  background: none;
  border: 2px solid magenta;
  color: magenta;
  cursor: pointer;
  margin: 1em 0;
  padding: 0.5em 1em;
  border-radius: 4px;
  font-weight: bold;
  display: block;
}

.mlp-section.hidden {
  display: none;
}

.mlp-tab-header button {
  padding: 0.5em 1em;
  cursor: pointer;
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
}

.mlp-tab-header button.active {
  border-color: magenta;
  color: magenta;
}

.mlp-tab-content {
  display: none;
}

.mlp-tab-content.active {
  display: block;
}

.mlp-section {
  margin-bottom: 2em;
}

.mlp-section h3 {
  margin-bottom: 0.5em;
}

.mlp-list {
  margin: 0;
  padding-left: 20px;
}

.mlp-toggle {
  background: none;
  border: none;
  color: magenta;
  cursor: pointer;
  margin-top: 0.5em;
} */

.mlp-tab-header {
  display: flex;
  margin-bottom: 1em;
  width: 100%;
}

.mlp-global-toggle {
  background: none;
  color: magenta;
  cursor: pointer;
  margin: 2em auto 1em;
  padding: 0.5em 1em;
  border-radius: 4px;
  font-weight: bold;
  display: block;
  border: none;
  text-align: center;
  width: fit-content;
}

.mlp-section.hidden {
  display: none;
}

.mlp-tab-header button {
  flex: 1;
  padding: 0.8em 1em;
  cursor: pointer;
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  font-size: 16px;
  text-align: center;
  outline: none;
}

.mlp-tab-header button.active {
  border: none;
  border-top: 2px solid magenta;
  color: magenta;
  background-color: #fff;
  outline: none;
  box-shadow: none;
}

.mlp-tab-header button:not(.active) {
  background-color: #e9e9e9;
  color: #333;
}

.mlp-tab-header button:focus {
  outline: none;
}

.mlp-tab-content {
  display: none;
}

.mlp-tab-content.active {
  display: block;
}

.mlp-section {
  margin-bottom: 2em;
  position: relative;
  border-bottom: 1px solid #eee;
  padding-bottom: 1em;
}

.mlp-section h3 {
  margin-bottom: 0.5em;
  font-size: 18px;
  font-weight: normal;
}

.mlp-list {
  margin: 0;
  padding-left: 20px;
}

.mlp-list li {
  margin-bottom: 0.5em;
  font-size: 14px;
}

.mlp-toggle {
  background: none;
  border: none;
  color: magenta;
  cursor: pointer;
  margin-top: 0.5em;
  position: absolute;
  bottom: 1em;
  right: 0;
}