.custom-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin-top: 2rem;
    margin-bottom: 2rem;
}
.custom-pagination .pagination {
    display: flex;
    gap: 0.25rem;
    padding: 0;
    margin: 0;
    list-style: none;
    background: none;
}
.custom-pagination .page-item {
    display: inline-block;
    flex-shrink: 0;
}
.custom-pagination .page-link {
    color: #222;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 0.375rem;
    padding: 0.5rem 1rem;
    font-weight: 500;
    transition: background 0.2s, color 0.2s, border 0.2s;
    text-decoration: none;
    min-width: 40px;
    height: 40px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}
.custom-pagination .page-link:hover,
.custom-pagination .page-link:focus {
    background: #f5f5f5;
    color: #007bff;
    border-color: #007bff;
    transform: none;
    text-decoration: none;
}
.custom-pagination .page-item.active .page-link {
    background: #222;
    color: #fff;
    border-color: #222;
    cursor: default;
}
.custom-pagination .page-item.disabled .page-link {
    color: #aaa;
    background: #f5f5f5;
    border-color: #e0e0e0;
    cursor: not-allowed;
}
