

.left-nav {
    width: 240px;
    height: 100%;
    position: fixed;
    left: 0;
    top: 0;
    background-color: #191b20;
    overflow-x: hidden;
    padding-top: 20px;

    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow-y: auto;
}

/* Hides the scrollbar for Webkit browsers like Chrome, Safari */
.left-nav::-webkit-scrollbar {
    display: none; /* Completely hides the scrollbar */
}

/* Optional: Hides scrollbar for IE, Edge, and Firefox */
.left-nav {
    -ms-overflow-style: none; /* For IE and Edge */
    scrollbar-width: none; /* For Firefox */
}

.left-nav-middle-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.content {
    margin-left: 240px;
    background-color: #222b35;
    height: 100%;
    padding: 50px;
    position: relative;
    overflow-y: auto;
    overflow-x: hidden;
}

.nav-link {
    display: block;
    color: white;
    text-decoration: none;
    padding: 15px;
    font-size: 14px;
    font-weight: 500;
    height: 53px;
}

    .nav-link:not(.nav-user):hover {
        background-color: #5b9bd5;
        color: white;
        text-decoration: none;
    }

    .nav-link.nav-user:hover {
        color: white;
        text-decoration: none;
    }

    .nav-link.selected {
        background-color: #5b9bd5;
        color: white;
        background-color: #222b35;
    }

/* Hide the logout link by default */
.nav-logout {
    display: none;
    margin-left: 15px;
    opacity: 0.5;
}

/* Show the logout link when the user hovers over the nav-user element */
.nav-user:hover .nav-logout {
    display: inline;
}

.super-admin-icon {
    position: relative;
    left: 10px;
    top: -5px;
    display: inline;
    font-size: 10px;
}
.super-admin-icon i {
    color: gold;
    font-size: 10px !important;
}

.impersonation-icon {
    color: gold;
    font-size: 10px;
    margin-left: 4px;
}

.nav-icon-container {
    width: 40px;
    text-align: center;
    display: block;
    position: relative;
    clear: right;
    float: left;
    font-size: 27px;
    top: -10px;
}

.nav-link i {
    font-size: 25px;
}

    .nav-link span {
        position: relative;
        left: 10px;
        top: 1px
    }


.left-nav-middle-section select {
    margin: 10px;
}