.table-min-w-md {
  min-width: 680px;
}
.custom-table table{
    border: 1px solid var(--bs-gray-800);
    border-collapse: separate;
    border-spacing: 0;
    border-radius: 30px;
}

.custom-table table th,
.custom-table table tr:not(:last-child) td{
    border-style: solid;
    border-color: var(--bs-gray-800);
    border-bottom-width: 1px;
}
.custom-table table th:not(:last-child){
    border-right-width: 1px;
}
.custom-table table td:not(:last-child){
    border-right-width: 1px;
}
@media screen and (max-width:575px) {
    .custom-table table{
        border-radius: 10px;
    }    
}