.table-responsive {
    min-height: .01%;
    overflow-x: auto;
    background-color: white;
    color: #333;
   
}

@media screen and (max-width: 767px) {
    .table-responsive {
        width: 100%;
        margin-bottom: 15px;
        overflow-y: hidden;
        -ms-overflow-style: -ms-autohiding-scrollbar;
        border: 2px solid black;
        background-color: #333;
        color: white;
    }
}