pragma-tabsheet {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  overflow-x: hidden;
}

$bar-height: 2rem;
$default-padding: 1rem;
$deouble-padding: 2rem;

.tabsheet-header {
  display: flex;
  flex-direction: row;
  align-items: center;
  background: var(--color-ui-4);
  margin-bottom: 1rem;
}

.tabsheet-bar:focus {
  outline:none;
}

.tabsheet-bar {
  flex: 1;
}

.tabsheet-bar {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  div {
    line-height: $bar-height;
    cursor: pointer;
    text-align: center;
    min-width: 5rem;

    border-bottom: transparent;
    border-bottom-width: $tab-highlight-height;
    border-bottom-style: $tab-highlight-style;
    box-sizing: border-box;
  }
}

.tabsheet-bar-item {
  transition: border 0.05s linear;
}

.tabsheet-bar-item[aria-selected="true"] {
  border-bottom: var(--color-highlight);
  border-bottom-width: $tab-highlight-height;
  border-bottom-style: $tab-highlight-style;
}