.chip {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5rem;
  color: $dark_green;
  text-decoration: none;
  border-radius: 50px;
  border: 1px solid $dark_green;
  background: none;
  width: fit-content;

  &:hover, &.selected {
    background: $dark_green;
    color: $white;
  }

  &.disabled {
    pointer-events: none;
    background: $light_grey;
    color: $grey;
    opacity: 0.5;
    border: none;
  }
}

.badge {
  display: inline-flex;
  padding: 5px 15px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  background: $dark_green;
  border-radius: 50px;

  color: $white;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.25rem;

  span {
    &.material-symbols {
      font-size: 1rem;
      line-height: 1rem;
    }
  }
}