/* Contracts: keep both row actions visible; the previous 120px cell clipped the second link as an ellipsis. */
.contracts-page .el-table__fixed-right .el-table__cell .cell,
.contracts-page .el-table__body-wrapper .el-table__cell:last-child .cell {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  padding-inline: 8px;
  overflow: visible;
  text-overflow: clip;
  white-space: nowrap;
}

.contracts-page .el-table__fixed-right .el-table__cell .el-button.is-link,
.contracts-page .el-table__body-wrapper .el-table__cell:last-child .el-button.is-link {
  flex: 0 0 auto;
  margin-inline: 0;
  padding: 4px 8px;
  border: 1px solid var(--el-border-color);
  border-radius: 6px;
  line-height: 1.35;
  background: var(--el-bg-color);
}

.contracts-page .el-table__fixed-right .el-table__cell .el-button.is-link:hover,
.contracts-page .el-table__body-wrapper .el-table__cell:last-child .el-button.is-link:hover {
  border-color: currentColor;
  background: var(--el-fill-color-light);
}
