#table-content {
    max-width: 1200px;
    margin: 30px auto 0;
}

#table-search {
    display: block;
    width: 100%;
    max-width: 400px;
    margin: 0 0 12px auto;
    padding: 8px 12px;
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
}

.data-filters {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    padding: 10px 14px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 13px;
}

.data-filters strong {
    margin-right: 6px;
}

.data-filters label {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    cursor: pointer;
}

/* Table */
.gc-custom-table {
    width: 100%;
    border-collapse: collapse;
}

.gc-custom-table thead tr th {
    background: #343a40;
    color: #fff;
    text-align: center;
    padding: 8px 10px;
    cursor: pointer;
    white-space: nowrap;
}

.gc-custom-table thead tr th:first-child { border-top-left-radius: 5px; }
.gc-custom-table thead tr th:last-child  { border-top-right-radius: 5px; }

.gc-custom-table tbody tr {
    border: 1px solid #e5e5e5;
    background: #f8f8f8;
}

.gc-custom-table tbody tr:nth-child(odd) {
    background: #fff;
}

.gc-custom-table tbody tr td {
    text-align: center;
    padding: 9px 10px;
    vertical-align: middle;
    font-size: 13px;
}

.gc-custom-table .download {
    text-decoration: none;
    color: #e64a19;
    padding: 4px 10px;
    border-radius: 4px;
    border: 1px solid #e64a19;
    transition: background 0.15s;
    white-space: nowrap;
}

.gc-custom-table .download:hover {
    background: #e64a19;
    color: #fff;
}

/* Pagination */
.gc-table-pagination {
    margin-top: 14px;
}

.gc-table-pagination .pagination {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.gc-table-pagination .pagination li a {
    display: inline-block;
    text-decoration: none;
    color: #343a40;
    border: 1px solid #ccc;
    padding: 5px 12px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 13px;
    transition: background 0.15s;
}

.gc-table-pagination .pagination li a:hover,
.gc-table-pagination .pagination li.active a {
    background: #343a40;
    color: #fff;
    border-color: #343a40;
}

.gc-table-pagination .pagination li.page-info {
    font-size: 13px;
    color: #666;
    padding: 5px 8px;
}
