.tabs{
  --seg-h: 38px;
  align-items: center;
  background: var(--gray-100);
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  display: inline-flex;
  gap: 6px;
  padding: 6px}
.tab{
  background: transparent;
  border: 0;
  border-radius: var(--radius-md);
  cursor: pointer;
  font: inherit;
  color: var(--gray-900);
  height: var(--seg-h);
  padding: 0 16px;
  white-space: nowrap}
.tab.active{
  background: var(--white);
  border: 1px solid var(--gray-300);
  box-shadow: var(--shadow-sm)}
.tab:focus-visible{
  box-shadow: var(--focus-ring);
  outline: none}