/* ── Chat Showcase — Pagination Styles ─────────────────────────────── */

.csp-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
    margin: 36px 0 0;
    padding: 0;
    list-style: none;
    font-family: -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

.csp-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 38px;
    height: 38px;
    padding: 0 10px;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    background: #fff;
    color: #374151;
    font-size: .875rem;
    font-weight: 500;
    text-decoration: none;
    transition: background .15s, border-color .15s, color .15s;
    cursor: pointer;
}

.csp-pagination .page-numbers:hover {
    background: #f9fafb;
    border-color: #075e54;
    color: #075e54;
}

.csp-pagination .page-numbers.current {
    background: #075e54;
    border-color: #075e54;
    color: #fff;
    cursor: default;
    font-weight: 700;
}

.csp-pagination .page-numbers.dots {
    border: none;
    background: none;
    cursor: default;
    padding: 0 4px;
    color: #9ca3af;
    min-width: auto;
}

.csp-pagination .page-numbers.prev,
.csp-pagination .page-numbers.next {
    font-weight: 700;
    color: #075e54;
}

.csp-pagination .page-numbers.prev:hover,
.csp-pagination .page-numbers.next:hover {
    background: #075e54;
    color: #fff;
    border-color: #075e54;
}

@media (max-width: 480px) {
    .csp-pagination .page-numbers { min-width: 32px; height: 32px; font-size: .8rem; }
}
