.pisell-lowcode__booking-service-body-edit {
  padding: 24px 32px 100px !important;
}

.pisell-lowcode__booking-service-body-edit-footer {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  border-top: 1px solid #e7e8e9;
  padding: 20px 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background-color: #fff;

  .pisell-lowcode__booking-service-body-edit-footer-left {
    display: flex;
    align-items: center;
    gap: 12px;
    width: fit-content;
  }

  .pisell-lowcode__booking-service-delete-wrap {
    height: 48px;
    width: 48px;
    border-radius: 8px;
    border: 1px solid var(--gray-300, #d0d5dd);
    background: var(--base-white, #fff);
    box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;

    .pisell-lowcode__booking-service-delete-icon {
      color: #b42318;
      font-size: 20px;
    }
  }

  .pisell-lowcode__booking-service-buttons-item {
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    position: relative;

    &.note-button {
      .note-indicator {
        position: absolute;
        top: 0; // 不使用负数偏移
        right: 0; // 不使用负数偏移
        transform: translate(12%, -12%); // 向外溢出约 2-3px
        width: 24px;
        height: 24px;
        border-radius: 50%;
        background-color: #7f56da; // 紫色
        color: #fff;
        font-weight: 700;
        display: flex;
        align-items: center;
        justify-content: center;
        line-height: 1;
        font-size: 30px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        pointer-events: none;
      }
    }
  }

  .pisell-lowcode__booking-service-body-edit-footer-apple {
    flex: 1;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

.pisell-lowcode-select-selection-item {
  .resource-option {
    padding-left: 0;
  }
}

.pisell-lowcode-select-item-option-content {
  .resource-option {
    padding-left: 0;
  }
}

.resource-option {
  display: flex;
  align-items: center;
  gap: 8px;

  .resource-option-alert-icon {
    color: #b42318;
    cursor: pointer;
  }
}

.current-service-info {
  min-height: 40px;
  cursor: pointer;
  background-color: #ffffff;
  border: 1px solid #d0d5dd;
  border-radius: 10px;
  transition: all 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
  overflow: hidden;
  padding: 11px;

  .current-service-info-name-wrap {
    display: flex;
    align-items: center;
    gap: 12px;

    .current-service-info-name {
      font-size: 16px;
      color: #101828;
      font-weight: 650;
      flex: 1;
    }

    .current-service-info-change-btn {
    }
  }

  &:hover {
    border-color: #7f56d9;
  }
}
