/* WP Table Manager — Frontend */
.wtm-wrapper {
    width: 100%;
    font-family: 'Trebuchet MS', sans-serif;
    font-size: 16px;
    color: #6a727f;
}
.wtm-scroll { overflow-x: auto; }

/* Controls */
.wtm-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    gap: 8px;
}
.wtm-search {
    font-family: 'Trebuchet MS', sans-serif !important;
    font-size: 13px !important;
    color: #6a727f !important;
    padding: 4px 9px !important;
    border: 1px solid #d1d5db !important;
    border-radius: 4px !important;
    background: #fff !important;
    box-shadow: none !important;
    outline: none;
    width: 200px;
    height: auto !important;
    line-height: 1.4 !important;
}
.wtm-count {
    font-size: 14px;
    color: #6a727f;
    white-space: nowrap;
}

/* Table */
.wtm-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 16px;
    font-family: 'Trebuchet MS', sans-serif;
}
.wtm-table th {
    padding: 17px 13px;
    text-align: left;
    font-size: 16px;
    font-weight: 600;
    user-select: none;
    cursor: pointer;
    white-space: nowrap;
    border: none;
}
.wtm-table td {
    padding: 17px 13px;
    text-align: left;
    font-size: 16px;
    border: none;
    border-bottom: 1px solid #e2e8f0;
    color: #6a727f;
}
/* Let theme link colors through naturally */
.wtm-table td a        { color: inherit; }
.wtm-table td a:hover  { text-decoration: underline; }

.wtm-table th.wtm-sort-asc  .wtm-sort-icon::after { content: ' ↑'; }
.wtm-table th.wtm-sort-desc .wtm-sort-icon::after { content: ' ↓'; }
.wtm-sort-icon { font-size: 11px; opacity: 0.7; }

/* Pagination */
.wtm-pagination {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 12px;
    font-size: 14px;
    font-family: 'Trebuchet MS', sans-serif;
    flex-wrap: wrap;
    gap: 6px;
    color: #6a727f;
}
.wtm-pag-buttons { display: flex; gap: 4px; }
.wtm-pag-btn {
    font-family: 'Trebuchet MS', sans-serif !important;
    font-size: 14px !important;
    padding: 6px 12px !important;
    border: 1px solid #4a5e76 !important;
    border-radius: 3px !important;
    background: #fff !important;
    color: #6a727f !important;
    cursor: pointer;
    box-shadow: none !important;
    line-height: 1.4;
}
.wtm-pag-btn:hover {
    background: #4a5e76 !important;
    color: #fff !important;
}
.wtm-pag-btn.active {
    background: #4a5e76 !important;
    color: #fff !important;
    border-color: #4a5e76 !important;
}
.wtm-per-page { display: none !important; }
