.table-rounded.dataTable tbody>tr.selected,
.table-rounded.dataTable tbody>tr>.selected {
    background-color: rgb(255, 119, 31, 0.3);
    font-weight: 500;
}

.table-rounded.dataTable tbody tr.selected a,
.table-rounded.dataTable tbody th.selected a,
.table-rounded.dataTable tbody td.selected a {
    color: #242424;
}

.table-rounded {
    width: 100%;
    /* font-size: 11px; */
    margin: 15px auto;
    border-collapse: separate;
    border-spacing: 0;
    background-color: #fff;
    border-radius: 12px;
}

.table-rounded thead {
    padding: 10px 20px;
    background-color: #FF771F;
    color: #fff;
    font-size: 15px;
}

.table-rounded td {
    padding: 6px;
    vertical-align: middle;
    border: 1px solid #242424;
}

.table-rounded th:first-child {
    border-top-left-radius: 12px;
}

.table-rounded th:last-child {
    border-top-right-radius: 12px;
}

.table-rounded tr:first-child td:first-child {
    border-top-left-radius: 0px;
}

.table-rounded tr:first-child td:last-child {
    border-top-right-radius: 0px;
}


.table-rounded tr:last-child td:first-child {
    border-bottom-left-radius: 12px;
}

.table-rounded tr:last-child td:last-child {
    border-bottom-right-radius: 12px;
}

.table-rounded td+td {
    border-left: none;
}

.table-rounded tr+tr td,
.table-rounded th+tr td {
    border-top: none;
}