/* Table Sorting Indicator Styles */
th.sortable-header {
    cursor: pointer;
    transition: background-color 0.2s ease;
}
th.sortable-header:hover {
    background-color: rgba(45, 52, 36, 0.6);
}
th.sortable-header i {
    margin-left: 5px;
    color: #737373;
}
th.sortable-header.sort-asc i {
    color: #8b9b4f;
    transform: rotate(180deg);
}
th.sortable-header.sort-desc i {
    color: #8b9b4f;
}