@media screen and (max-width: 768px) {
    .bootstrap-table {
        width: 100%;
        overflow: hidden;
        margin-bottom: 20px;
    }

    .bootstrap-table .fixed-table-toolbar {
        display: flex;
        flex-direction: column;
        height: auto;
    }

    .bootstrap-table .fixed-table-toolbar .bs-bars,
    .bootstrap-table .fixed-table-toolbar .columns,
    .bootstrap-table .fixed-table-toolbar .search {
        width: 100%;
        margin-top: 10px;
        margin-bottom: 5px;
        float: none !important;
        text-align: left;
    }
    
    .bootstrap-table .fixed-table-toolbar .search input {
        width: 100%;
    }

    .bootstrap-table .fixed-table-container {
        overflow-x: auto;
        padding-bottom: 0 !important;
        border-radius: 4px;
        border: 1px solid #ddd;
    }

    .bootstrap-table .fixed-table-header {
        margin-right: 0 !important;
        display: block;
        width: 100%;
    }

    .bootstrap-table .table {
        min-width: 100%;
        width: auto !important;
        table-layout: auto;
    }

    .bootstrap-table .table th,
    .bootstrap-table .table td {
        white-space: nowrap; 
        min-width: 100px;    
        vertical-align: middle;
    }

    .bootstrap-table .fixed-table-container thead th .th-inner {
        padding: 8px;
        line-height: 24px;
        vertical-align: top;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .bootstrap-table .table th:nth-last-child(2),
    .bootstrap-table .table td:nth-last-child(2) {
        min-width: 150px;
    }

    .bootstrap-table .table th:last-child,
    .bootstrap-table .table td:last-child {
        position: sticky;
        right: 0;
        background-color: #fff;
        z-index: 2;
        box-shadow: -2px 0 5px rgba(0,0,0,0.05);
        width: 80px;
        min-width: 80px;
        text-align: center;
    }

    .bootstrap-table .fixed-table-header th:last-child {
        z-index: 3;
    }

    .bootstrap-table .fixed-table-pagination {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .bootstrap-table .fixed-table-pagination .pagination-detail,
    .bootstrap-table .fixed-table-pagination .pagination {
        float: none !important;
        margin-top: 10px;
        margin-bottom: 10px;
        text-align: center;
    }

    .bootstrap-table .fixed-table-pagination .pagination-detail .page-list {
        display: inline-block;
    }
    
    .bootstrap-table .fixed-table-pagination .pagination a {
        padding: 6px 12px;
        font-size: 14px;
    }
}