#tablepress-providers-table {
    width: 100%;
    max-width: 1220px;
    margin: 0 auto;
    border: 0;
    position: relative;
    table-layout: fixed;
}

/* 🔥 Removed column highlight */
#tablepress-providers-table::before {
    content: none !important;
}

/* Basic cleanup */
#tablepress-providers-table tbody {
    border: 0;
}

#tablepress-providers-table thead td,
#tablepress-providers-table thead th,
#tablepress-providers-table tbody td {
    background-color: transparent;
    padding: 20px 25px;
    border: 0;
    font-size: 12px;
    line-height: 1.2;
    letter-spacing: -0.05px;
    text-align: center;
    vertical-align: middle;
    position: relative;
}

/* Adjust column widths for fluid layout */
#tablepress-providers-table thead th {
    width: auto;
}

#tablepress-providers-table thead td.column-1,
#tablepress-providers-table thead th.column-2 {
    width: auto;
}

/* Body cell tweaks */
#tablepress-providers-table tbody td {
    padding: 15px;
}

#tablepress-providers-table tbody td:first-child {
    padding-left: 60px;
    font-size: var(--font-size-lg);
    text-align: left;
}

#tablepress-providers-table tbody td:first-child span {
    width: 32px;
    height: 32px;
    color: #fff;
    background-color: var(--primary);
    border-radius: 50%;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    left: 16px;
    transform: translateY(-50%);
}

#tablepress-providers-table tbody td:first-child small {
    font-size: 10px;
}

#tablepress-providers-table tbody td:nth-child(2) {
    padding-left: 60px;
    font-size: 14px;
    text-align: left;
}

#tablepress-providers-table tbody td:nth-child(2) img {
    position: absolute;
    top: 50%;
    left: 18px;
    transform: translateY(-50%);
}

#tablepress-providers-table tbody td:nth-child(2) strong {
    font-size: 16px;
}

/* Zebra striping */
#tablepress-providers-table tbody tr:nth-child(2n+1) td {
    background-color: #fff;
}

#tablepress-providers-table small {
    font-size: var(--font-size-sm);
}