.sidebar .sidebar-menu > ul > li{
    margin-bottom: 13px;
}
.breadcrumb-item+.breadcrumb-item::before{
    content: unset;
}

.breadcrumb-item+.breadcrumb-item::before {
    float: left;
    padding-right: var(--bs-breadcrumb-item-padding-x);
    color: var(--bs-breadcrumb-divider-color);
    content: var(--bs-breadcrumb-divider, "/");
}

.div_pass .input-group-text{
    display: inline-flex;
    height: 40px;
    background: #00d0f1;
    border-radius: unset;
    color: #fff;
}
.div_pass{
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    border-radius: 0 4px 4px 0;
}
.div_pass input{
    border-radius: 0 4px 4px 0; 
}
.sidebar-menu ul li a{
    font-size: 14px;
}
.card-body label{
    font-weight: 600;
}

.login-body{
    background: #000;
}
.login-wrapper .loginbox .login-left{
    background: linear-gradient(180deg, #1b5a90, #1a1a1aed);
}

.sidebar-inner {
    height: 82%;
    min-height: 100%;
    -webkit-transition: all 0.2s ease-in-out 0s;
    -ms-transition: all 0.2s ease-in-out 0s;
    transition: all 0.2s ease-in-out 0s;
    overflow-y: scroll;

    /* For WebKit browsers */
    scrollbar-width: thin; /* For Firefox */
    scrollbar-color: #1b5a90 #f1f1f1; /* For Firefox */
}

/* WebKit specific scrollbar styling */
.sidebar-inner::-webkit-scrollbar {
    width: 10px; /* Set scrollbar width */
}

.sidebar-inner::-webkit-scrollbar-thumb {
    background-color: #1b5a90; /* Color of the scrollbar thumb */
    border-radius: 10px; /* Optional: round the edges of the scrollbar thumb */
}

.sidebar-inner::-webkit-scrollbar-thumb:hover {
    background-color: #555; /* Color of the scrollbar thumb on hover */
}

.sidebar-inner::-webkit-scrollbar-track {
    background-color: #1b5a90; /* Color of the scrollbar track */
}

