/* Style for all sortable headers */
.tablesorter-header {
    @apply relative cursor-pointer pr-6; /* Add padding for the icon */

    /* Default "unsorted" icon (dimmed up/down arrows) */
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3E%3Cpath stroke='%239ca3af' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 13 4-4 4 4M6 7l4 4 4-4'/%3E%3C/svg%3E");
    background-position: right 0.25rem center;
    background-repeat: no-repeat;
    background-size: 1.25em 1.25em;
}

.tablesorter-headerAsc {
    /* Active "up" arrow */
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3E%3Cpath stroke='%239ca3af' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 7 4 4 4-4'/%3E%3C/svg%3E");
}

.tablesorter-headerDesc {
    /* Active "down" arrow */
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3E%3Cpath stroke='%239ca3af' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 13 4-4 4 4'/%3E%3C/svg%3E");
}

th[data-sorter="false"].tablesorter-header {
    background-image: none !important;
    cursor: default;
}
