/* файл: sort-indicators.css */

/* Индикаторы сортировки для заголовков таблицы */
th[data-sort] {
    cursor: pointer;
    position: relative;
    user-select: none;
    padding-right: 20px; /* место для стрелки */
}

th[data-sort]:hover {
    background-color: var(--hover-bg, #f5f5f5);
}

th.sort-asc::after,
th.sort-desc::after {
    content: "";
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 14px;
    line-height: 1;
}

th.sort-asc::after {
    content: "🔺";
    color: var(--primary);
}

th.sort-desc::after {
    content: "🔻";
    color: var(--primary, #007bff);
}