.pisell-lowcode__customer_card {
  display: flex;
  width: 100%;
  padding: 20px 8px;
  align-items: center;
  gap: 16px;
  border-radius: 8px;
  border: 1px solid #D5D7DA;
  background: var(--base-white, #FFF);
  cursor: pointer;
  position: relative;
  margin-bottom: 0;

  .pisell-lowcode__customer_card-avatar {
    display: flex;
    width: 48px;
    height: 48px;
    padding: 16px;
    justify-content: center;
    align-items: center;
    border-radius: 200px;
    background: var(--Badge-Blue_Container, #D1E3FF);
    font-weight: 600;
    color: #0B5FDB;
  }

  .pisell-lowcode__customer_card-avatar-icon {
    font-size: 24px;
    color: #0B5FDB;
  }


  .pisell-lowcode__customer_card-info {
    flex: 1;
    display: flex;
    align-items: center;

    .pisell-lowcode__customer_card-info-left {
      flex: 1;
      width: 0;

      .pisell-lowcode__customer_card-info-name {
        color: var(--gray-900, #101828);


        font-size: 16px;
        font-style: normal;
        font-weight: 600;
        line-height: 24px;
      }

      .pisell-lowcode__customer_card-info-desc {
        color: var(--gray-400, #98A2B3);

        font-size: 14px;
        font-style: normal;
        font-weight: 400;
      }

      .pisell-lowcode__customer_card-info-email,
      .pisell-lowcode__customer_card-info-phone {
        color: var(--gray-400, #98A2B3);

        font-size: 14px;
        font-style: normal;
        font-weight: 400;
      }
    }

    .pisell-lowcode__customer_card-info-right {
      width: 40px;
      height: 40px;
      display: flex;
      align-items: center;
      justify-content: center;

      .pisell-lowcode__customer_card-add-icon {
        font-size: 28px;
        color: #475467;
      }
    }
  }
}