table thead tr th {
    background-image: url('bg.png')!important;
    background-size: 10px;
    background-repeat: no-repeat;
    background-position: right center;
}
table thead tr th.sorting-desc {
    background-image: url('desc.png')!important;
}
table thead tr th.sorting-asc {
    background-image: url('asc.png')!important;
}

/* ===============================
   Tradeline Pagination Styling
================================ */

.tradeline-pagination {
    margin: 30px 0;
    text-align: center;
}

.tradeline-pagination ul {
    display: inline-flex;
    gap: 8px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.tradeline-pagination ul li {
    list-style: none;
    margin: 0;
    padding: 0;
}

/* Page links */
.tradeline-pagination a,
.tradeline-pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    font-size: 14px;
    font-weight: 500;
    color: #0073aa;
    background: #ffffff;
    border: 1px solid #dcdcdc;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.2s ease;
}

/* Hover */
.tradeline-pagination a:hover {
    background: #0073aa;
    color: #ffffff;
    border-color: #0073aa;
}

/* Current page */
.tradeline-pagination .current {
    background: #0073aa;
    color: #ffffff;
    border-color: #0073aa;
    cursor: default;
}

/* Disabled dots */
.tradeline-pagination .dots {
    border: none;
    background: transparent;
    color: #666;
    cursor: default;
}

/* Next / Prev */
.tradeline-pagination .prev,
.tradeline-pagination .next {
    font-weight: 600;
}
