main {
    position: relative;
}

#sidebar {
    position: fixed;
    z-index: 999;
    right: 10px;
    top: 52px;
    bottom: 0px;
    overflow-y: auto;
    background-color: #e4e4e4;
   
}

#sidebar>div {
    width: 300px;
    height: 100%;
}

main {
    overflow: auto;
}

html,
body {
    margin: 0;
    min-height: 100%;
    height: 100%;
    overflow: hidden
}

header {
    padding: 5px 20px;
    background: #E4E4E4;
    border-bottom: 2px solid #000000;
}

header i,
header span {
    color: #0D0B21;
}

.text-end {
    margin-left: auto;

    strong {
        padding-left: 5px;
        padding-right: 5px;
        margin-left: 5px;
        margin-right: 5px;
        border-right: 1px solid black;
        border-left: 1px solid black;
    }
}

main {
    height: -webkit-calc(100%) !important;
    height: -moz-calc(100%) !important;
    height: calc(100%) !important;
}

.loading {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    z-index: 9;
    justify-content: center;
    background-color: #CCCCCC;
}

.loading .spinner-border {
    width: 50px;
    height: 50px;
}

.toggle-nav {
    cursor: pointer;
    font-weight: 700;
    margin-left: 5px;
    font-size: 20px;
}

#sidebar ul {
    margin-top: 5px;
    gap: 10px;
    padding-bottom: 20px;
}

#sidebar .nav-pills .nav-link {
    color: #2b2b2b;
    font-weight: 600;
    text-align: left;
}

#sidebar .nav-pills .nav-link.active {
    background-color: #c2c2c2 !important;
    color: rgb(255, 255, 255);
}

.nav-link .fa-lock{
    float: right;
}

::-webkit-scrollbar {
    width: 10px; 
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #888; 
    border: 1px solid #f1f1f1;
    border-radius: 6px;
}