<style>
/* Layout */

/*.container {
    width: 90%;
    max-width: 900px;
    margin: 40px auto;
}*/

/* Table styling */
.table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

.table th,
.table td {
    border: 1px solid #dee2e6;
    padding: 8px 12px;
    text-align: left;
}

.table th {
    background-color: #f8f9fa;
}

/* Pagination container */
.pagination {
    display: flex;
    justify-content: center;
    list-style: none;
    padding-left: 0;
}

/* Pagination items */
.pagination li {
    margin: 0 3px;
}

/* Links */
.pagination a {
    display: block;
    padding: 6px 12px;
    text-decoration: none;
    color: #0d6efd;
    border: 1px solid #dee2e6;
    border-radius: 4px;
    background-color: #fff;
    transition: all 0.2s ease;
}

/* Hover */
.pagination a:hover {
    background-color: #e9ecef;
}

/* Active page */
.pagination .active a {
    background-color: #0d6efd;
    color: #fff;
    border-color: #0d6efd;
}

/* Disabled (optional future use) */
.pagination .disabled a {
    color: #6c757d;
    pointer-events: none;
    background-color: #fff;
}
</style>