/* resources/css/pagination.css */
.pagination-wrap {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: #111111;
    border-radius: 999px;
    padding: 6px 10px;
    border: 0.5px solid #2a2a2a;
}

.pg-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    color: #aaaaaa;
    background: none;
    border: none;
    cursor: pointer;
    transition: background 0.15s, color 0.15s;
    font-family: inherit;
    line-height: 1;
    user-select: none;
}

.pg-btn:hover {
    color: #ffffff;
    background: #1e1e1e;
}

/* Active page — purple circle */
.pg-btn.active {
    background: #ff5c8a;
    color: #ffffff;
    cursor: default;
}

/* Arrows */
.pg-btn.nav {
    color: #555555;
    font-size: 16px;
}

.pg-btn.nav:hover {
    color: #ffffff;
    background: #1e1e1e;
}

.pg-btn.disabled {
    color: #333333;
    cursor: not-allowed;
    pointer-events: none;
}

/* Dots */
.pg-btn.dots {
    width: 28px;
    cursor: default;
    color: #555555;
}

.pg-btn.dots:hover {
    background: none;
    color: #555555;
}

/* Center the pagination */
nav[aria-label="Pagination"] {
    display: flex;
    justify-content: center;
    margin: 2rem 0;
}