@import "../../styles/variables.scss";

.tabs {
  width: 100%;
  display: flex;
  flex-direction: row;
}

.tab {
  display: flex;
  align-items: center;
  width: auto;
  margin-bottom: -$base-border-width;
  padding: ($base-spacing * 1.25) $base-spacing;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  z-index: 1;

  &:not(:last-child) {
    margin-right: $m-spacing;
  }
}

.notification {
  margin-left: $base-spacing;
  border-radius: 50px;
  background-color: $brand-nearWhite;
  padding: $s-spacing $base-spacing;
}

.notification.blue {
  background-color: $brand-blue;
}

.notification.green {
  background-color: $brand-green;
}

.notification.lightGrey {
  background-color: $brand-lightGrey;
}

.active {
  border-bottom: 2px solid $brand-blue;
}
