:host {
  /**
   * @prop --background: Background of the segment button
   */
  --ripple-color: currentColor;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: flex;
  position: relative;
  align-items: stretch;
  justify-content: center;
  width: 100%;
  background: var(--background);
  font-family: var(--gasco-font-family, inherit);
  text-align: center;
  user-select: none;
}

:host(.segment-scrollable) {
  justify-content: start;
  width: auto;
  overflow-x: auto;
}

:host(.segment-scrollable::-webkit-scrollbar) {
  display: none;
}

:host {
  --background: transparent;
  border-bottom-width: 1px;
  border-bottom-color: #ABBED1;
  border-bottom-style: solid;
}

:host(.segment-scrollable) ::slotted(gasco-tab-button) {
  min-width: auto;
}