/* sidebar navigation*/
.sidebar {
    width: 300px; /* Sidebar width */
    background-color: #0C1444;
    height: 100%; /* Full height of the viewport */
    position: fixed;
    top: 0;
    left: 0;
    padding-top: 20px;
    border-right: 1px solid #C6C5C2;
}
.sidebar-logo{
    margin: auto;
    display: flex
}
.sidebar-nav{
    width: 259px;
    display: flex;
    flex-direction: column; /* Stack items vertically */
    gap: 6px; /* adds space between items */
    margin: 12px auto auto;
    color:#868FC4;
}
.sidebar-nav-item a{
    text-decoration: none;
    height: 56px;
    display: inline-block;
}
.sidebar-nav-item{
    width:100%;
    height:100%;
    border-radius: 6px;
    padding: 8px 16px;
    vertical-align: middle;
}

.sidebar-nav-item:hover
{
    background-color: #3C4C8B;  /* Lightened color for hover effect */
    color:#8a93c6;
}

/* nav breadcrumb */
.breadcrumb{
    color:#6C757D;
}
.breadcrumb-divider{
    color:#CED4DA;
    padding-left:10px;
    padding-right:10px;
}
.breadcrumb a{
    text-decoration: none;
}
.breadcrumb-item{
    color: #CDA424;
}
.breadcrumb-item a,
.breadcrumb-item a:visited{
    color: #2A3A9B;
}

/* User Profile */
.nav-icon{
    width: 24px;      /* Same as font-size to maintain space */
    display: inline-block;  /* Ensures the icon takes up space inline */
    font-size: 24px; /* Use font-size to control icon size */
    vertical-align: middle;
    height: 36px;
}
.nav-text{
    padding: 6px 16px;
    vertical-align: middle;
    font-size:16px;
    display:inline-block;
}

.profile-nav {
    background-color: #253071;
    height: 90px;
    max-height: 90px;
    width: 284px;
    position: absolute;
    display: inline-block;
    bottom: 0px;
    margin: 8px;
    border-radius: 4px;
}

.profile-nav:hover{
    background-color: #3C4C8B;  /* Lightened color for hover effect */
    border-color: #3C4C8B;  /* Border color for the hover effect */
}
.sidebar-nav-item{
    color:#868FC4;
}
.nav-item-active > div,
.nav-item-active > div:hover  {
    background-color: #CDA424;
    color:#3D3007;
}
.nav-item-active{
    /*  pointer-events: none; Disable clicks */
}

.profile-nav-icon {
    margin-top:auto;
    margin-bottom:auto;
}

.profile-nav-info{
    color:white;
    font-size:16px;
    width:150px;
    margin-right:10px;
    font-weight:400;
    display: flex;               
    flex-direction: column;      /* Stack the name and job title vertically */
    justify-content: center;     /* Vertically center the items within the container */
    align-items: flex-start;     /* Align the text to the left */
    height: 100%;                /* Ensure the container takes up the full height */
 }

.profile-nav-icon {
    max-width: 52px;
    height: 52px;
    object-fit: cover;
    /* Space between the icon and name */
    margin-top:auto;
    margin-bottom:auto;
    margin-left: 16px;
    margin-right: 14px; /* Space between the icon and name */
}

.profile-nav-arrow-icon{
    color: #B2B9E8;
    font-size: 24px;
    margin-top:auto;
    margin-bottom:auto;
    margin-right:12px;
}

.profile-nav-name{
    font-size:17px;
    font-weight: 600;
    line-height: 20px;
    
    /* limits to 2 lines */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    max-height: 40px; /* adjust depending on line height */

}

.profile-nav-job-title {
    font-size:15px;
    font-weight: 300;
    line-height: 20px;
    
    /* limits to 2 lines */
    display: -webkit-box;
    -webkit-line-clamp: 2;  
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    max-height: 40px; /* adjust depending on line height */
 }


.site-mode-header {
    border-bottom: solid 1px #172264;
    display: block;
    margin-left: 23px;
    margin-right: 23px;
}
.site-mode-header-text {
    font-weight: 500;
    font-size: 24px;
    color: #FFFFFF;
    height: 52px;

    width: 100%;               /* takes full width */
    text-align: center;
}

/* when the site selection is a section under normal nav */
.site-mode-selection-section{
    padding-top: 15px;
    border-top: solid 1px #172264;
}

.site-mode-selection{
    background-color: #172265;
    border: solid 1px #253071;
    border-radius: 6px;
    margin-bottom: 8px;

    white-space: nowrap;
    overflow: hidden;
    height: 56px;
}


.kioskModeDropdown {
    background-color: #060c30;
    width: 100%;
}

.kioskMode-dropdown-wrapper{
    width: 100%;
}

/* Kiosk Mode dropdown */
.kioskModeDropdownBtn {
    background-color: #060c30;
    border-radius: 6px;
    border: solid 1px #3C4C8B;
    width: 100%;
    height: 42px;
    color: #8a93c6;
}
.kioskModeDropdownBtn:hover,
.kioskModeDropdownBtn:focus,
.kioskModeDropdownBtn:active {
    background-color: #3C4C8B;
    color: #8a93c6;
}

 .kioskModeDropdownMenu {
     width: 100%;
     background-color: #060c30;
     color: white;
 }
 
.kioskModeDropdownMenu .dropdown-item {
     color: #8a93c6;
 }
.kioskModeDropdownMenu .dropdown-item:hover,
.kioskModeDropdownMenu .dropdown-item:focus,
.kioskModeDropdownMenu .dropdown-item:active{
    background-color: #3C4C8B;
    color: #8a93c6;
}