.table-pagination {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    margin-top: 1rem;
    border-top: 1px solid #e5e7eb;
}

.page-info {
    color: #6b7280;
    font-size: 0.875rem;
}

.pagination {
    gap: 0.25rem;
}

.page-link {
    border-radius: 0.375rem;
    color: #4b5563;
}

.page-item.active .page-link {
    background-color: #3b82f6;
    border-color: #3b82f6;
}

.page-item.disabled .page-link {
    cursor: not-allowed;
}

/* Dark mode */
html[data-theme="dark"] .table-pagination {
    border-top-color: #21262D;
}

html[data-theme="dark"] .page-info {
    color: #8B949E;
}

html[data-theme="dark"] .page-link {
    color: #C9D1D9;
    background-color: #161B22;
    border-color: #30363D;
}

html[data-theme="dark"] .page-link:hover {
    background-color: #1C2333;
    color: #E6EDF3;
    border-color: #30363D;
}

html[data-theme="dark"] .page-item.active .page-link {
    background-color: #58A6FF;
    border-color: #58A6FF;
    color: #fff;
}

html[data-theme="dark"] .page-item.disabled .page-link {
    background-color: #0D1117;
    color: #6E7681;
    border-color: #21262D;
}

@media (max-width: 768px) {
    .table-pagination {
        flex-direction: column;
        gap: 1rem;
    }

    .page-info {
        order: 2;
    }

    .pagination {
        order: 1;
    }
}
