﻿body {
}
.table-rounded {
    border-collapse: separate;
    border-spacing: 0;
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid #ddd;
}

.table-rounded th, .table-rounded td {
    padding: 10px;
    border-bottom: 1px solid #ddd;
}

.table-rounded th:first-child {
    border-top-left-radius: 15px;
}

.table-rounded th:last-child {
    border-top-right-radius: 15px;
}

.table-rounded tr:last-child td:first-child {
    border-bottom-left-radius: 15px;
}

.table-rounded tr:last-child td:last-child {
    border-bottom-right-radius: 15px;
}
