/* Responsive addons page - Bootstrap responsive table */
@media (max-width: 768px) {
    #wplb-addons-list-container .table-responsive {
        overflow-x: auto;
    }
    #wplb-addons-list-container .table th, #wplb-addons-list-container .table td {
        white-space: nowrap;
        padding: 8px;
        font-size: 14px;
    }
    #wplb-addons-list-container .table thead {
        display: none;
    }
    #wplb-addons-list-container .table tbody tr {
        display: block;
        border: 1px solid #ddd;
        margin-bottom: 10px;
        padding: 10px;
    }
    #wplb-addons-list-container .table tbody td {
        display: block;
        text-align: left;
        border: none;
        position: relative;
        padding-left: 50%;
        word-wrap: break-word;
        white-space: normal;
        min-height: 2em;
        padding-top: 0.5em;
        padding-bottom: 0.5em;
    }
    #wplb-addons-list-container .table tbody td:before {
        content: attr(data-label);
        position: absolute;
        left: 10px;
        width: 45%;
        padding-right: 10px;
        white-space: nowrap;
        font-weight: bold;
    }
}