/*This CSS was created by Theuns and customise the bootstrap styling*/

/*Rel line around the menu tabs and text*/
.nav-tabs .nav-link:focus, .nav-tabs .nav-link:hover {
    border-color: #ec2bd7;
    color:#ec2bd7;
}

/*Remove the border line around the table area*/
.table-bordered {
    /*border: 1px solid #dee2e6;*/
    border: none;
}
/*Change bootstrap blue menus to black*/
.nav-link {
    color: black;
}
/*Copied from form-control to create similar bax around checkbox group*/
.checkbox-group {
    display: block;
    width: 100%;
    /*height: calc(1.5em + .75rem + 2px);*/
    padding: .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: .25rem;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}

/*Color line below the main menu*/
.nav-tabs {
    border-bottom: 3px solid #ec2bd7;
}