.editable-cell-wrapper {
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: space-between;
  gap: 4px;
}

.editable-cell-edit-icon {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  visibility: hidden;
  color: rgba(0, 0, 0, 0.65);
  flex-shrink: 0;

  svg path {
    fill: currentColor !important;
  }

  &:hover {
    color: var(--zaui-brand, #006aff);
  }
}

td:hover .editable-cell-edit-icon {
  visibility: visible;
}

