/* OneBot ERP - Table Column Resizer (Global) */

.ob-col-resizer{
  position:absolute;
  top:0;
  right:-2px;
  width:6px;
  height:100%;
  cursor:col-resize;
  user-select:none;
  touch-action:none;
  z-index:10;
}

table thead th:hover .ob-col-resizer{
  background: rgba(13,110,253,.08);
}

body.ob-resizing,
body.ob-resizing *{
  cursor: col-resize !important;
  user-select: none !important;
}