/* ═══════════════════════════════════════════════════════════════
   TABLE SORT — Click Header to Sort CSS
   ═══════════════════════════════════════════════════════════════ */

.dashboard-table thead th,
.exec-table thead th {
    cursor: pointer;
    user-select: none;
    position: relative;
    transition: background 0.2s;
}

.dashboard-table thead th:hover,
.exec-table thead th:hover {
    background: #e2e8f0 !important;
}

.dashboard-table thead th::after,
.exec-table thead th::after {
    content: ' ⇅';
    font-size: 0.7rem;
    color: #94a3b8;
    margin-left: 4px;
}

.dashboard-table thead th.sort-asc::after,
.exec-table thead th.sort-asc::after {
    content: ' ▲';
    color: #0ea5e9;
}

.dashboard-table thead th.sort-desc::after,
.exec-table thead th.sort-desc::after {
    content: ' ▼';
    color: #0ea5e9;
}

.dashboard-table thead th.no-sort::after,
.exec-table thead th.no-sort::after {
    content: '';
}

/* Mobile touch-friendly */
@media (hover: none) and (pointer: coarse) {
    .dashboard-table thead th,
    .exec-table thead th {
        min-height: 44px;
    }
}
