/* Global responsive behavior for all admin tables */
.table-responsive {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.table-responsive > .table {
    margin-bottom: 0;
}

@media (max-width: 767.98px) {
    .table-responsive > .table {
        min-width: 700px;
    }
}
