.wco-subtabs {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 1fr;
  background: #e5e5e5;
  border-radius: 8px;
  padding: 4px;
  width: fit-content;

  > * {
    text-align: center;
    padding: 6px 12px;
    background: transparent;
    border: none;
    cursor: pointer;
    font-size: var(--wco-font-size-xs);
    font-weight: 500;
    color: var(--wco-color-neutral-700);
    border-radius: 6px;

    transition: background 0.25s ease, color 0.2s ease;
  }

  > *.wco-subtab-selected {
    background: white;
    color: var(--wco-color-neutral-900);
    font-weight: 600;
  }

  > *:hover:not(.wco-subtab-selected) {
    background: rgba(255,255,255,0.4);
  }
}