@charset "UTF-8";
/* Style the resize handle */
.table-resizable th {
  position: relative;
  overflow: hidden;
}

.table-resizable th .resize-handle {
  position: absolute;
  right: 0;
  top: 0;
  width: 5px;
  cursor: col-resize;
  -moz-user-select: none;
       user-select: none;
  -webkit-user-select: none;
  height: 100%;
}

.table-resizable th .resize-handle:hover {
  background-color: #ddd;
}

.sort-icon.asc::after {
  content: "▲"; /* Up arrow for ascending sort */
}

.sort-icon.desc::after {
  content: "▼"; /* Down arrow for descending sort */
}

.sort-icon.unsorted::after {
  content: ""; /* No icon for unsorted state */
}/*# sourceMappingURL=table.css.map */