.te-pagination-nav {
    display: flex;
    justify-content: center;
    width: 100%;
}

.te-pagination {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin: 0;
    padding: 0;
}

.te-pagination .page-item {
    margin: 0 !important;
}

.te-pagination .page-link {
    min-width: 2.6rem;
    min-height: 2.6rem;
    padding: 0.45rem 0.75rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(23, 49, 58, 0.14);
    border-radius: 999px;
    background: #fff;
    color: #1f4650;
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1;
    box-shadow: 0 10px 20px rgba(23, 49, 58, 0.08);
    transition: transform 0.16s ease, box-shadow 0.16s ease, background-color 0.16s ease, color 0.16s ease, border-color 0.16s ease;
}

.te-pagination .page-link:hover,
.te-pagination .page-link:focus {
    border-color: rgba(23, 49, 58, 0.24);
    background: linear-gradient(180deg, #ffffff 0%, #f3f8f7 100%);
    color: #17313a;
    transform: translateY(-1px);
    box-shadow: 0 14px 26px rgba(23, 49, 58, 0.12);
}

.te-pagination .page-item.active .page-link,
.te-pagination .page-item[aria-current="page"] .page-link {
    color: #fff;
    font-weight: 800;
    border-color: transparent;
    background: linear-gradient(135deg, #17313a 0%, #244650 100%);
    box-shadow: 0 14px 28px rgba(23, 49, 58, 0.2);
    cursor: default !important;
    pointer-events: none;
    text-decoration: none;
}

.te-pagination .page-item.disabled .page-link {
    border-color: rgba(23, 49, 58, 0.09);
    background: #f2f5f5;
    color: #8ca0a6;
    box-shadow: none;
    cursor: default !important;
    pointer-events: none;
}

.te-pagination .page-item:first-child .page-link,
.te-pagination .page-item:last-child .page-link {
    font-size: 1.05rem;
}

@media (max-width: 767.98px) {
    .te-pagination {
        gap: 0.4rem;
    }

    .te-pagination .page-link {
        min-width: 2.35rem;
        min-height: 2.35rem;
        padding: 0.4rem 0.62rem;
        font-size: 0.9rem;
    }
}
