.booking-holder-field {
  display: flex;
  flex-direction: column;
  gap: 16px;

  &__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
  }

  &__title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
  }

  &__required {
    color: #ff4d4f;
  }

  &__count {
    color: #667085;
    font-size: 12px;
  }

  &__actions {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  &__action-button {
    padding: 0;
    border: none;
    background: transparent;
    color: #7f56d9;
    font-size: 12px;
    line-height: 16px;
    cursor: pointer;
    span {
      text-decoration: underline;
      text-underline-offset: 4px;
    }

    &:hover {
      color: #6941c6;
    }

    &:disabled,
    &.booking-holder-field__action--disabled {
      cursor: not-allowed;
      opacity: 0.5;
      color: #c2a9f1;
    }
  }
}

