/* additional styling when creating buttons in datatables.
just gives the first and last button the right border-radius
*/
.btn-single {
    border-radius: 3px !important;
}

.btn-first {
    border-radius:3px 0 0 3px !important;
}
.btn-last {
    border-radius:0 3px 3px 0 !important;
}

.btn-danger:active, .btn-danger.active {
    border-color: #cc4946 !important;
}

.btn-danger:active:hover, .btn-danger.active:hover {
    border-color: #761c19 !important;
}