@import '../../style/common.scss';

.coast-tabs {
  &-nav {
    display: flex;
    color: $colorDark;
    border-bottom: 1px solid $borderColorGray;
    position: relative;

    &-item {
      padding: 8px 0;
      margin: 0 16px;
      cursor: pointer;
      color: $colorGray;
      transition: all 0.25s;

      &:first-child {
        margin-left: 0;
      }

      &.selected {
        color: $theme;
        font-weight: 500;
      }

      &.disabled {
        color: $disabledColor;
        cursor: not-allowed;
        user-select: none;
      }
    }

    &-indicator {
      position: absolute;
      height: 2px;
      background: $theme;
      left: 0;
      bottom: -1px;
      transition: all 0.25s;
    }
  }

  &-content {
    padding: 8px 0;
  }
}
