.table.table_dark th::after {
    content: "";
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 8px;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 4px solid rgba(237, 183, 73, 0.5);
    opacity: 0.5;
    transition: all 0.2s ease;
}

.table.table_dark th:hover::after {
    opacity: 0.8;
}

.table_dark th.sort-asc::after {
    border-top: 5px solid #EDB749;
    border-bottom: 0;
    opacity: 1;
}

.table_dark th.sort-desc::after {
    border-bottom: 5px solid #EDB749;
    border-top: 0;
    opacity: 1;
}
