.materials-grid-actions {
  display: flex;
  align-items: start;
  justify-content: space-between;
  margin-bottom: 16px;
  gap: 16px;

  .left-wrap {
    flex: 1;
    display: flex;
    align-items: start;
    gap: 8px;

    .pisell-lowcode-form-item {
      margin-bottom: 0;
    }
  }

  .right-wrap {
    display: flex;
    align-items: center;
    justify-content: end;
    column-gap: 12px;
    flex-wrap: wrap;
    row-gap: 6px;

    .icon {
      cursor: pointer;
      transition: .2s;

      &:hover {
        color: var(--theme-color);
      }
    }

    .button {
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 12px;
      height: 28px;
    }
  }
}