.thieffry-tabs {
  width: 100%;
  flex: 1;
  background-color: beige;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: auto;
}

.thieffry-tabs-header {
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 0.5rem 0;
}

.thieffry-tabs-header> :last-child {
  flex: 1;
}

.thieffry-tabs-header-tab {
  padding: inherit;
  color: grey;
  border-bottom: 1px solid black;
  padding: 0.5em 1em 0.5em 1em;
}

.thieffry-tabs-header-tab.active {
  font-weight: 900;
  color: black;
  border-left: 1px solid black;
  border-right: 1px solid black;
  border-bottom: unset;
  border-top: 1px solid black;
}

.thieffry-tabs-body {
  width: 100%;
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow: auto;
  padding-top: 0.5em;
}