/* Styles for the SortableTable component (src/core/sortable_table.js) */

.is-sortable {
    cursor: pointer;
    user-select: none;
    white-space: nowrap;
}

.is-sortable .sort-icon {
    opacity: 0.5;
    margin-left: 4px;
}

.is-sortable.sorted-asc .sort-icon,
.is-sortable.sorted-desc .sort-icon {
    opacity: 1;
}

.table-action {
    background: none;
    border: none;
    padding: 0;
    color: var(--bulma-link);
    cursor: pointer;
}

.table-action:hover {
    color: var(--bulma-link-hover-color);
}

.table-action[data-action="delete"] {
    color: var(--bulma-link-danger-color);
}

.table-action[data-action="delete"]:hover {
    color: var(--bulma-link-danger-hover-color);
}