/* Main navbar styling */
.navbar {
    border-bottom: 2px solid #13274C;
    margin-bottom: 10px;
    padding: 0.5rem 1rem;
    position: relative;
    height: 60px;
    display: flex;
    align-items: center;
}

.navbar-no-border {
    border-bottom: none !important;
}

/* Container for all navbar elements */
.container-fluid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 0 15px;
}


/* Right side navigation container */
.d-flex.align-items-center {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-left: auto;
}

/* Reports & Super Admin links - now positioned on the right */
.nav-reports-admin {
    display: flex;
    align-items: center;
    margin-right: 20px;
    padding: 0;
}

.nav-reports-admin li {
    list-style: none;
}

.nav-reports-admin a {
    color: #13274C;
    padding: 8px 15px;
    border-radius: 5px;
    margin-bottom: 9px;
    text-decoration: none;
    display: inline-block;
}

.nav-reports-admin a:hover {
    color: #9eb4dd !important;
    background: #13274C;
    border-radius: 25px;
}

/* Authentication & User Dropdown */
.navbar-collapse {
    display: flex;
    flex-basis: auto;
}

.navbar-nav {
    display: flex;
    align-items: center;
    padding: 0;
    margin: 0;
}

.nav-item {
    list-style: none;
}

/* Fix for the nav-link and dropdown toggle */
.nav-link {
    color: #13274C ;
    padding: 8px 15px;
    text-decoration: none;
    margin: 0;
    display: flex !important;
    align-items: center !important;
    line-height: 1.5;
}

.nav-link.dropdown-toggle {
    display: inline-flex !important;
    align-items: center !important;
    gap: 0.5rem;
}

.nav-item a:hover {
    color: #9eb4dd !important;
    background: #13274C;
    border-radius: 25px;
    font-weight: bold;
    padding-right: 25px !important;
}

/* Dropdown styling */
.dropdown-menu {
    min-width: 10rem;
    padding: 0.5rem 0;
    border-radius: 0.25rem;
    border: 1px solid rgba(0, 0, 0, 0.15);
    background-color: #fff;
}

.dropdown-item {
    display: block;
    width: 100%;
    padding: 0.5rem 1.5rem;
    clear: both;
    font-weight: 400;
    color: #212529;
    text-align: inherit;
    white-space: nowrap;
    background-color: transparent;
    border: 0;
    text-decoration: none;
}

.dropdown-item:hover {
    background-color: #f8f9fa;
    color: #16181b;
}

.header-drop-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.header-drop-item i {
    width: 16px;
    text-align: center;
}

/* Arrow Icons for the dropdown */
#navbar .dropdown-toggle::after {
    content: none !important; 
}

#navbar .dropdown-toggle {
    position: relative;
    padding-right: 1.5rem !important;
}

#navbar .dropdown-toggle::before {
    font-family: "Font Awesome 5 Free";
    content: '\f078';
    font-weight: 900;
    font-size: 0.7em;
    position: absolute;
    right: 0.5rem;
    top: 50%;
    transform: translateY(-50%);
    color: currentColor;
}

.sidebarColor i {
    margin-right: 5px; /* Adjust spacing between icon and text */
}
