.ila-table th {
    color: white !important;
}

.ila-table th button {
    position: relative;
    color: currentcolor;
}

.ila-table.sortable th {
    color: initial;
    position: relative;
}

.ila-table.sortable th button {
    border-width: 2px !important;
    border-color: transparent !important;
    border-style: solid !important;
    padding: 4px;
    margin: 1px;
    font-size: 100%;
    font-weight: bold;
    background: transparent;
    border: none;
    display: inline;
    right: 0;
    left: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    text-align: left;
    outline: none;
    cursor: pointer;
}

.ila-table.sortable th button span {
    position: absolute;
    right: 4px;
}

.ila-table.sortable th[aria-sort="descending"] span::after {
    content: "▼";
    color: currentcolor;
    font-size: 100%;
    top: 0;
}

.ila-table.sortable th[aria-sort="ascending"] span::after {
    content: "▲";
    color: currentcolor;
    font-size: 100%;
    top: 0;
}

.ila-table.show-unsorted-icon th:not([aria-sort]) button span::after {
    content: "♢";
    color: currentcolor;
    font-size: 100%;
    position: relative;
    top: -3px;
    left: -4px;
}

/* Focus and hover styling */

.ila-table.sortable th button:focus,
.ila-table.sortable th button:hover {
    border-color: currentcolor !important;
}

.ila-table.sortable th:not([aria-sort]) button:focus span::after,
.ila-table.sortable th:not([aria-sort]) button:hover span::after {
    content: "▼";
    color: currentcolor;
    font-size: 100%;
    top: 0;
}
