/* Table sort indicator styles */
.table thead th.asc:after {
    content: " ▲";
    font-size: 0.8em;
    color: #007bff;
}

.table thead th.desc:after {
    content: " ▼";
    font-size: 0.8em;
    color: #007bff;
}

/* Make sortable headers show a pointer cursor */
.table thead th.orderable {
    cursor: pointer;
}

/* Highlight the currently sorted column */
.table thead th.asc, .table thead th.desc {
    background-color: rgba(0, 123, 255, 0.1);
}
