.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: white;
    padding: 10px 20px;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 10;
    height: 70px;
    min-width: 60%;
}

.header-container-bx {
    width: 100%;
    position: fixed;
    top: 0;
    padding: 0 2rem;
    left: 0;
    display: flex;
    align-items: start;
    justify-content: space-between;
    z-index: 1050;
    height: 85px;
    background: linear-gradient(to bottom, #034093, #006DB2);
}

.sidebar-btn.active {
    position: relative;
    color: #006DB2;
}

.nav-btn.active {
    position: relative;
    font-weight: 700;
}

.nav-btn.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 5%;
    width: 30%;
    height: 4px;
    background-color: #00B6D5;
    z-index: 1;
    border-radius: 3px;
}

.dash-logo {
    max-width: 150px;
    width: 100%;
}

.header-dd-cont {
    font-weight: lighter;
    background: linear-gradient(to bottom, #034093, #006DB2);
    border-radius: 20px;
    padding: 1.25rem;
    color: white;
    white-space: nowrap;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    top: 58px;
    position: absolute;
    margin-left: -50%;
    z-index: 1100;
}

.header-dd-txt-cont {
    font-weight: lighter;
    text-decoration: none;
    color: white;
    border-bottom: 2px solid rgba(256, 256, 256, 0.2);
    padding-bottom: 0.5rem;
    margin-bottom: 0.5rem;
}

.nav-section {
    width: 100%;
    display: flex;
    justify-content: space-evenly;
    gap: 20px;
    align-items: center;
}

.nav-btn {
    background: none;
    border: none;
    font-size: 16px;
    text-decoration: none;
    margin-top: 1rem;
    cursor: pointer;
    padding: 5px 10px;
    transition: color 0.3s ease;
    position: relative;
}

.nav-btn:hover {
    color: #00ccff;
    text-decoration: none;
}

.logo-section {
    display: flex;
    align-items: center;
}

.logo-section-right {
    display: flex;
    align-items: center;
    min-width: 177px;
    max-width: 177px;
}

.logon-btn {
    background: none;
    border: none;
    color: white;
    font-size: 16px;
    cursor: pointer;
    padding: 5px 10px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.header-large-icon-bx-mobile {
    display: none;
}

.logon-btn:hover {
    color: #00ccff;
}

.dash-logo-mobile {
    width: 3rem;
}

.sidebar {
    position: fixed;
    top: 85px;
    right: 0;
    width: 250px;
    height: calc(100% - 85px);
    background-color: white;
    box-shadow: -2px 0 5px rgba(0, 0, 0, 0.5);
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
    z-index: 100;
}

.sidebar.open {
    transform: translateX(0);
}

.sidebar-content {
    padding: 20px;
    display: flex;
    align-items: start;
    flex-direction: column;
    gap: 10px;
}

.sidebar-btn {
    background: none;
    border: none;
    color: #006DB2;
    font-size: 16px;
    cursor: pointer;
    padding: 10px;
    display: flex;
    justify-content: flex-start;
    width: 100%;
    text-decoration: none;
}

.sidebar-btn:hover {
    color: #00ccff;
}

.close-btn {
    background: none;
    border: none;
    color: #006DB2;
    font-size: 16px;
    cursor: pointer;
    padding: 10px;
    display: flex;
    justify-content: flex-start;
    width: 100%;
}

.sidebar-overlay {
    position: fixed;
    top: 85px;
    left: 0;
    width: 100%;
    height: calc(100% - 85px);
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 99;
}

.hamburger-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

@media (max-width: 1075px) {
    .header-container {
        display: none;
    }
    .header-large-icon-bx-large {
        display: none;
    }
    .header-large-icon-bx-mobile {
        display: flex;
        align-items: center;
        justify-content: center;
        height: 100%;
    }
}

@media (min-width: 1076px) {
    .sidebar {
        display: none !important;
    }
}

.fade-out {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.fade-in {
    color: white;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.fade-out-display {
    color: white;
    display: none;
    transition: opacity 0.3s ease;
}

.fade-in-display {
    display: block;
    transition: opacity 0.3s ease;
}

.active-chev-dd-bx {
    border-radius: 20px 20px 0 0;
    width: 100%;
    background: linear-gradient(to bottom, #034093, #006DB2);
    height: 75%;
    align-items: center;
    position: absolute;
}

.username-ellipsis {
    max-width: 120px;  
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: inline-block;
    color: red; 
    vertical-align: middle;
}
