.view-switch {
  display: flex;
  flex-wrap: var(--shell-switch-wrap, nowrap);
  justify-content: var(--shell-switch-justify, flex-start);
  gap: 4px;
  max-width: 100%;
  padding: 4px;
  border: 1px solid var(--shell-switch-border, #4d4a43);
  border-radius: 999px;
  background: var(--shell-switch-background, #1a1916);
}

.view-switch a {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  min-height: var(--shell-switch-link-height, 32px);
  padding: var(--shell-switch-link-padding, 0 14px);
  border-radius: 999px;
  color: var(--shell-switch-link-color, #a9a69d);
  font-size: var(--shell-switch-font-size, 0.78rem);
  font-weight: 750;
  text-decoration: none;
  white-space: nowrap;
}

.view-switch a:hover,
.view-switch a:focus-visible {
  color: var(--shell-switch-hover-color, #fff);
}

.view-switch a:focus-visible {
  outline: 2px solid var(--shell-switch-focus, #fff);
  outline-offset: 2px;
}

.view-switch .is-active {
  color: var(--shell-switch-active-color, #171611);
  background: var(--shell-switch-active-background, #fff);
}

.view-switch .is-active:hover,
.view-switch .is-active:focus-visible {
  color: var(--shell-switch-active-color, #171611);
  background: var(--shell-switch-active-background, #fff);
}

.view-unread {
  display: inline-grid;
  box-sizing: border-box;
  min-width: 18px;
  height: 18px;
  margin-left: 3px;
  padding: 0 2px;
  place-items: center;
  border-radius: 999px;
  color: var(--shell-unread-color, #f8f6ef);
  background: var(--shell-unread-background, #6b6861);
  font-size: var(--shell-unread-font-size, 0.61rem);
  line-height: 1;
}

.view-unread[hidden] {
  display: none;
}
