/* Basic styling for the CoolTablesWP table */
.ctwp-table-wrapper {
    overflow-x: auto;
    margin: 1rem 0;
}

.ctwp-table {
    width: 100%;
    border-collapse: collapse;
    background: #ffffff;
}

.ctwp-table th,
.ctwp-table td {
    padding: 0.75rem;
    text-align: left;
    border-bottom: 1px solid #dee2e6;
}

.ctwp-table th[data-col] {
    cursor: pointer;
}

.ctwp-table th[data-col].asc::after {
    content: ' ▲';
}

.ctwp-table th[data-col].desc::after {
    content: ' ▼';
}

/* Table Styles */
.ctwp-table.striped tbody tr:nth-of-type(odd) {
    background-color: rgba(0,0,0,.05);
}

.ctwp-table.bordered th, .ctwp-table.bordered td {
    border: 1px solid #dee2e6;
}
