.table-scroll .link-cell {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 34px;
}

body:not(.mo-edit-mode) .table-scroll .link-cell .cell-input {
  display: none !important;
}

.table-scroll .link-cell .hyperlink-icon {
  display: inline-flex;
  flex: 0 0 34px;
  align-items: center;
  justify-content: center;

  width: 34px;
  height: 34px;
  min-width: 34px;
  min-height: 34px;

  padding: 0;
  border: 1px solid rgba(129, 140, 248, 0.32);
  border-radius: 999px;

  background-color: rgba(99, 102, 241, 0.13);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%23c7d2fe' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M10 13a5 5 0 0 0 7.54.54l3-3a5 5 0 0 0-7.07-7.07l-1.72 1.71'/%3E%3Cpath d='M14 11a5 5 0 0 0-7.54-.54l-3 3a5 5 0 0 0 7.07 7.07l1.71-1.71'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 17px 17px;

  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.025),
    0 4px 12px rgba(15, 23, 42, 0.18);

  cursor: pointer;
  text-decoration: none;
  transition:
    transform 0.16s ease,
    border-color 0.16s ease,
    background-color 0.16s ease,
    box-shadow 0.16s ease;
}

.table-scroll .link-cell .hyperlink-icon:hover {
  transform: translateY(-1px);
  border-color: rgba(165, 180, 252, 0.62);
  background-color: rgba(99, 102, 241, 0.23);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.04),
    0 6px 16px rgba(79, 70, 229, 0.22);
}

.table-scroll .link-cell .hyperlink-icon:focus-visible {
  outline: 2px solid rgba(165, 180, 252, 0.9);
  outline-offset: 2px;
}

.table-scroll .link-cell .hyperlink-icon:not([href]) {
  opacity: 0.4;
  pointer-events: none;
}

body.mo-edit-mode .table-scroll .link-cell {
  justify-content: flex-start;
}

body.mo-edit-mode .table-scroll .link-cell .cell-input {
  display: block !important;
  min-width: 180px;
}
