.crud-edit:not(.btn),.crud-edit:not(.btn):link,.crud-edit:not(.btn):visited{color:#2563EB !important}
.crud-edit:not(.btn):hover,.crud-edit:not(.btn):focus{color:#1D4ED8 !important}
.crud-edit:not(.btn):active{color:#1E40AF !important}
.contrast-on-navy,.contrast-on-navy:hover,.contrast-on-navy:focus,.contrast-on-navy:active{color:#FFFFFF !important}

/* Table column resize handle */
th {
  position: relative;
}
.th-resizer {
  position: absolute;
  top: 0;
  right: 0;
  width: 6px;
  height: 100%;
  cursor: col-resize;
  user-select: none;
  background: transparent;
  z-index: 10;
  transition: background-color 150ms ease;
}
.th-resizer:hover {
  background-color: rgba(37, 99, 235, 0.3);
}
.th-resizer:active {
  background-color: rgba(37, 99, 235, 0.5);
}
/* Visual indicator saat resize aktif */
body[style*="cursor: col-resize"] .th-resizer {
  background-color: rgba(37, 99, 235, 0.4);
}
