.button-base {
  position: relative;
  font: inherit;
  color: inherit;
  background: transparent;
  overflow: hidden;
  cursor: pointer;
  padding: 0;
  outline: 0;
  border: 0;
  border-radius: 0;
  margin: 0;
  gap: var(--hs-spacing-base);
  flex-shrink: 0;
  appearance: none;
  user-select: none;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}

.button-base::-moz-focus-inner {
  border: 0;
}

.button-base--disabled {
  cursor: default;
  pointer-events: none;
}
