.GhostpaperPagination {
    display: flex;
    justify-content: center;
}

.GhostpaperPagination-List {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
}

.GhostpaperPagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2.25rem;
    min-height: 2.25rem;
    padding: 0.55rem 0.7rem;
    border: 1px solid var(--gp-border-strong);
    background: rgba(255, 255, 255, 0.03);
    color: var(--gp-text);
    font-size: 0.6875rem;
    letter-spacing: 0.16em;
    line-height: 1;
    text-transform: uppercase;
    text-decoration: none;
}

.GhostpaperPagination a.page-numbers:hover {
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
}

.GhostpaperPagination .page-numbers.current {
    background: #f5f5f5;
    color: #050505;
}

.GhostpaperPagination .page-numbers.prev,
.GhostpaperPagination .page-numbers.next {
    padding-inline: 0.85rem;
}

.GhostpaperPagination .page-numbers.dots {
    min-width: auto;
    padding-inline: 0.2rem;
    border-color: transparent;
    background: transparent;
    color: var(--gp-text-muted);
}