.pagination-list{
    margin-top: 32px;
    display: flex;
    justify-content: center;
}
/* Wrapper */
.paginations {

}

/* Pagination ul */
.paginations .pagination {
    gap: 12px;
    align-items: center;
}

/* Item chung */
.paginations .page-item {
    list-style: none;
}

/* Link chung */
.paginations .page-link {
    border: none;
    background: transparent;
    color: var(--main-color);
    font-size: 16px;
    padding: 6px 10px;
    min-width: 27px;
    text-align: center;
    border-radius: 50%;
    transition: all 0.2s ease;
}

/* Hover */
.paginations .page-link:hover {
    background: #f0f6ff;
}

/* Trang active (số có gạch dưới) */
.paginations .page-item.active .page-link {
    background: transparent;
    font-weight: 600;
    position: relative;
}

.paginations .page-item.active .page-link::after {
    content: '';
    position: absolute;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
    width: 27px;
    height: 1px;
    background: var(--main-color);
    border-radius: 2px;
}

/* Nút prev / next dạng tròn */
.paginations .page-item:first-child .page-link,
.paginations .page-item:last-child .page-link {
    width: 36px;
    height: 36px;
    border: 2px solid var(--main-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

/* Disabled */
.paginations .page-item.disabled .page-link {
    opacity: 0.4;
    cursor: not-allowed;
}


.small.text-muted{
    display: none !important;
}