
.pagination {
    display: flex;
    justify-content: center;
    margin-top: 48px;
}

.pagination .page-numbers {
    display: flex;
    align-items: center;
    gap: 6px;
    list-style: none;
    margin: 0;
    padding: 20px;
    cursor: pointer;
}

.pagination .page-numbers li a,
.pagination .page-numbers li span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.05);
    color: inherit;
}

.pagination .page-numbers li a:hover {
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
}
.current {
    color: #5858ff ;
}

.pagination .page-numbers li a.prev,
.pagination .page-numbers li a.next {
    font-size: 0.85rem;
    letter-spacing: 0.03em;
    padding: 0 16px;
}

.pagination .page-numbers li span.dots {
    border: none;
    background: transparent;
    color: inherit;
    opacity: 0.5;
}