.table {
    text-align: left;
    line-height: 30px;
    width: 100%;
    border: 2px solid#19bbeb;
    border-radius: .25rem;
    font-size: 17px;
    border-collapse: separate;
    max-width: none;
}

.table thead tr:first-child {
    background: #19bbeb;
    color: #fff;
    border: none;
}

.table th {
    font-weight: 500;
    padding: 0px 10px;
}

.table thead tr:last-child th {
    border: 1px solid #f1efef;
}

.table tbody tr:hover {
    background-color: #f2f2f2;
    cursor: default;
}

.table tbody td {
    border: 1px solid #f1efef;
    padding: 3px 10px;
}

.dataTable{
    width: 100% !important;
    min-width: 1200px;
    overflow: auto;
} 

.dataTable.fit{
    width: 100% !important;
    max-width: 100%;
    min-width: unset;
} 

.dataTable th{
    min-width: 175px !important;
}

.dataTable th.min-width-20px{
    min-width: 20px !important;
}

.dataTable th.auto-width{
    min-width: auto !important;
}

.dataTable tr td:last-child {
    width: 1%;
    white-space: nowrap;
}

.dataTable.last-two-th-action tr td:nth-last-child(2){
    width: 1%;
    white-space: nowrap;
}

.dataTable .btn{
    margin: 10px 0px;
}

.training-time tr td:last-child{
    white-space: nowrap;
}

@media (max-width: 768px) {
    .dataTable{
        width: 100% !important;
        min-width: auto;
        overflow: auto;
    } 

    .dataTable tr td:last-child {
        width: auto;
        white-space: normal;
    }

    tr td:last-child {
        width: auto;
        white-space: normal;
    }

    .dataTable.last-two-th-action tr td:nth-last-child(2){
        width: auto;
        white-space: normal;
    }

    .dataTable .btn{
        margin-top: 20px;
        margin-bottom: 0px;
    }

    .dataTable .btn:last-child{
        margin-bottom: 20px;
    }
}