.pagination-footer {
    padding: 14px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    border-top: 1px solid #f0f0f0;
}

.pagination-footer .page-info {
    font-size: 15px;
    color: #666;
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 0;
}

.pagination-footer .page-select {
    height: 32px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    padding: 0 24px 0 8px;
    font-size: 13px;
}

.pagination-footer .page-btn {
    width: 32px;
    height: 32px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    background: #fff;
    color: #666;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.pagination-footer .page-btn:hover:not(:disabled) {
    background: #f5f5f5;
}

.pagination-footer .page-btn:disabled {
    opacity: 0.4;
    cursor: default;
}

@media (max-width: 575.98px) {
    .pagination-footer {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 8px;
        padding: 12px 16px;
    }

    .pagination-footer .page-info {
        width: auto;
        gap: 6px;
        flex-wrap: nowrap;
        min-width: 0;
        font-size: 0.875rem;
    }

    .pagination-footer .page-info:first-child {
        flex: 0 1 auto;
    }

    .pagination-footer .page-info:last-child {
        flex: 1 1 auto;
        justify-content: flex-end;
    }

    .pagination-footer [data-pagination-text] {
        margin-right: auto;
        white-space: nowrap;
        min-width: 0;
    }

    .pagination-footer .page-select {
        min-width: 60px;
        height: 30px;
        padding: 0 20px 0 6px;
        font-size: 0.8125rem;
    }

    .pagination-footer .page-btn {
        width: 30px;
        height: 30px;
        flex: 0 0 30px;
    }
}
