.breadcrumb-item + .breadcrumb-item::before {
    content: "->";
}

table {
    border-collapse: separate;
}

table thead tr:not(.noRowColor):first-child{
    background-color: #3963a6;
}

table:not(.noRowColor) > tbody > tr:not(.noRowColor):nth-child(2n+1) {
    background-color: #dde8f0;
}

.button-item{
    background: #fff;
    padding: 6px !important;
    border-radius: 10px;
    box-shadow: 1px 2px 7px  rgb(161, 161, 161);
    transition: 0.3s;   
}

.button-item:hover {
    background: #e4ffdb;
    cursor: pointer;
}
.button-item.active .switch {
    background: #0a4275;
}

.button-item.active .slide-toggle::before {
    transform: translateX(18px);
}
.main-content {
    /*    background: #f9fcff;*/
    box-shadow: 3px 4px 10px gray !important;
    margin-left: 290px;
    min-height: 310px;
}

.min-height-450 {
    min-height: 450px;
}

.sidebar {
    position: fixed;
    width: 280px;
    border-right: 1px solid #dee2e6;
    background: #fff;
    border-radius: 12px;
    height: fit-content !important;

}
.sidebar.centered {
    top: 30%;
    align-self: center !important;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
.card {
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
    border: none;
}
.btn-primary-custom {
    background-color: #28a745;
    border: none;
    font-weight: 600;
    font-size: 1rem;
    padding: 10px 16px;
}
.btn-primary-custom:hover {
    background-color: #218838;
}
.breadcrumb {
    background-color: transparent;
    font-size: 0.9rem;
    padding-left: 0;
}
.section-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #284a7a;
    border-left: 4px solid #28a745;
    padding-left: 12px;
    margin-bottom: 1.5rem;
}
th {
    /*        background-color: #f1f3f5;*/
}
th, td {
    text-align: left;
    vertical-align: middle !important;
}
.switch {
    position: relative;
    display: inline-block;
    width: 29px;
    height: 17px;
}
.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}
.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ced4da;
    transition: 0.4s;
    border-radius: 3px;
}
.slider:before {
    position: absolute;
    content: "";
    height: 10px;
    width: 10px;
    left: 2px;
    bottom: 4px;
    background-color: white;
    transition: 0.4s;
    border-radius: 2px;
}
input:checked + .slider {
    background-color: #28a745;
    box-shadow: 1px 0px 2px black;
}
input:checked + .slider:before {
    transform: translateX(16px);
}
.hidden {
    display: none !important;
}

.selectAll {
    color: #ffffff;
    background-color: #dc3545;
    border-bottom: 2px solid #646464;
    border-top-left-radius: 50px;
}
