body {
    display: flex;
    height: 100vh;
    font-family: sans-serif;
    background: #f4f4f4;
    overflow: hidden;
}

/* Sidebar Menu--------------------------------------------------------------------------------------------------------------------------*/
.SidebarWrapper {
    width: 256px;
    background-color: #fff;
    transition: width 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    height: 100vh;
    padding: 24px 24px 8px 12px;
    z-index: 1 !important;
}

    .LogoContainer {
        width: 100%;
        display: flex;
        justify-content: flex-start;
        align-items: center;
        transition: all 0.3s ease;
        padding-bottom: 24px;
        margin-left: 4px;
        height: 10%;
        max-height: 75px;
    }
    
    .LogoFull {
        height: 50px;
        width: auto;
        transition: opacity 0.3s ease;
    }
    
    .LogoSmall {
        height: 50px;
        width: auto;
        display: none;
        transition: opacity 0.3s ease;
    }
    
    .MenuItems {
        width: 100%;
        height: 90%;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: space-between;
        padding: 0 0 0 0;
    }
    
    .MenuItem { position: relative; }
    
    .ScrollableMenu{
        display: flex;
        flex-direction: column;
        height: auto;
        overflow-y: auto;
        width: 100%;
        gap: 12px;
        padding-top: 4px;
        overflow-x: hidden;
    }
    
    .MenuItems a{
        text-underline: none;
        text-decoration: none;
    }
    
    .MenuButton {
        display: flex;
        align-items: center;
        width: 100%;
        border: none;
        background: none;
        padding: 8px;
        cursor: pointer;
        transition: background 0.2s ease, transform 0.2s;
        border-radius: 8px;
    }
    
    .MenuIcon {
        width: 24px;
        height: 24px;
    }
    
    .MenuText {
        margin-left: 8px;
        color: #333;
        font-family: Inter;
        font-size: 14px;
        font-style: normal;
        font-weight: 500;
        line-height: normal;
        white-space: nowrap;
        transition: opacity 0.3s ease;
    }
    
    .NotificationNumber{
        right: 30px;
        top: 50%;
        transform: translateY(-50%);
        position: absolute;
        display: flex;
        justify-content: center;
        align-items: center;
        height: 16px;
        width: 16px;
        font-size: 10px;
        font-style: normal;
        font-weight: 500;
        line-height: normal;
        color: var(--Light-1, #F4F3F0);
        border-radius: 4px;
        background: var(--root-complement-2---on-light, #F62938);
    }
    
    .MenuArrow {
        margin-left: auto;
        width: 14px; height: 14px;
        transition: transform 200ms ease;
    }
    
    /* Dropdown */
    .Submenu {
        position: static;
        display: none;
        /*margin-top: 6px;*/
        border-radius: 8px;
        background: #fff;
        border: none;
        overflow: hidden;
        padding: 10px 0px 10px 20px;
    }
    
    .SubmenuItem {
        display: block; padding: 10px 12px; text-decoration: none;
        color: #0C1E42; font-size: 14px;
        font-family: Inter;
        font-weight: 400;
        transition: background 120ms ease;
        border-radius: 8px;
    }
    
    .SidebarWrapper .ScrollLine{
        border-left: 1px solid #979EB0;
        padding: 0 0 0 8px;
        margin: 0;
    }
    
    .SidebarWrapper .LineBreak{
        width: 100%;
        height: 2px;
        background: none;
        border-top: 1.5px solid #E3E3E3;
    }
    
    .BottomMenuItems{
        margin-top: 10px;
        display: flex;
        flex-direction: column;
        height: auto;
        width: 100%;
        gap: 12px;
    }
    
    
    /* Arrow button */
    .ToggleArrow {
        position: absolute;
        right: -18px;
        top: 50%;
        transform: translateY(-50%);
        /*background: none;*/
        padding: 6px;
        border-radius: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        /*border: 1.5px solid #F2F6FF;*/
        border: none;
        cursor: pointer;
        /*background-color: #fff;*/
        background-color: #f2f6ff;
        transition: transform 0.3s ease;
    }
    
    .ToggleArrow svg {
        transition: transform 0.3s ease;
    }

    /*ACTIVE or OPEN-------------------------------------------*/
    .MenuItem.open .MenuArrow,
    .MenuItem.active .MenuArrow {
        transform: rotate(180deg);
    }
    
    .MenuItem.open .MenuButton,
    .MenuItem.active .MenuButton { 
        background: #0C1E42; 
    }
    
    .MenuItem.open .MenuText,
    .MenuItem.active .MenuText { 
        color: #fff; 
    }
    
    .MenuItem.open .Submenu { 
        display: block; 
    }
    
    .SubmenuItem.is-active { 
        background: #CDDBF6; 
    }
    /*ACTIVE or OPEN End---------------------------------------*/

    /*HOVER---------------------------------------------------*/
    .MenuButton:hover {
        border-radius: 8px;
        background: #CDDBF6;
        transform: translateY(-2px);
    }
    
    .SubmenuItem:hover { 
        background: #CDDBF6; color: #0C1E42; 
    }
    
    .SidebarWrapper .ScrollLine:hover{
        border-left: 1.5px solid #0C1E42;
    }
    /*HOVER End---------------------------------------------------*/

    /* COLLAPSED sidebar --------------------------------- */
    .SidebarWrapper.collapsed {
        width: 86px;
        min-width: 82px;
        padding: 24px 0px 8px 0px;
    }
    
    .SidebarWrapper.collapsed .LogoContainer{
        padding-left: 16px;
        margin-left: 0px;
    }
    
    .SidebarWrapper.collapsed .LogoFull {
        display: none;
    }
    
    .SidebarWrapper.collapsed .LogoSmall {
        display: block;
    }
    
    .SidebarWrapper.collapsed .MenuItems{
        padding-left: 16px;
    }
    
    /* ——— Collapsed layout tweaks ——— */
    .SidebarWrapper.collapsed .MenuButton {
        justify-content: center;
        position: relative;
        width: 40px;
        height: 40px;
    }
    
    .SidebarWrapper.collapsed .MenuText {
        display: none;                /* hide label when collapsed */
    }
    
    .SidebarWrapper.collapsed .MenuArrow {
        position: absolute;
        top: 13px;
        right: -14px;
        width: 14px; height: 14px;
        transform: rotate(270deg);
    }
    .SidebarWrapper.collapsed .MenuItem.open .MenuArrow,
    .SidebarWrapper.collapsed .MenuItem.active .MenuArrow {
        transform: rotate(90deg);
    }
    .SidebarWrapper.collapsed .ScrollLine{
        border-left: 1px solid #979EB0;
        padding: 0 0 0 8px;
        margin: 0;
    }
    
    .SidebarWrapper.collapsed .ScrollLine:hover{
        border-left: 1.5px solid #0C1E42;
    }
    /* Floating submenu used only when collapsed */
    .Submenu--floating {
        padding: 14px 8px 14px 8px;
        position: fixed;
        display: block !important;
        min-width: 220px;
        max-height: 70vh;
        overflow: auto;
        background: #fff;
        border: /*1px solid #E0E7F8;*/ none;
        /*border-bottom: 1px solid #E0E7F8;*/
        /*border-top: 1px solid #E0E7F8;*/
        /*border-right: 1px solid #E0E7F8;;*/
        /*box-shadow: 2px 0 12px rgba(12,30,66,0.10);*/
        /*box-shadow: 0 8px 24px rgba(12,30,66,0.22);*/
        z-index: 1000;
        margin-top: -11px;
        margin-left: -1px;
        border-radius: 0px 8px 8px 0px;
    }
    
    .SidebarWrapper.collapsed .NotificationNumber{
        right: 0;
        top: 28%;
        transform: translateY(-72%);
    }
    
    .SidebarWrapper.collapsed .LineBreak{
        margin-left: -8px;
    }
    
    .SidebarWrapper.collapsed .ToggleArrow svg {
        transform: rotate(180deg);
    }
    /* COLLAPSED Sidebar End--------------------------------- */
/* Sidebar Menu End---------------------------------------------------------------------------------------------------------------------*/

/* Right Side ------------------------------------------------------------------------------------------------------------------*/
.RightSide {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    height: 100vh;
    overflow: hidden;

     /*Top Bar -----------------------------------------------------------------------------------------------------------*/
    .TopBar {
        display: flex;
        justify-content: space-between;
        align-items: center;
        background-color: #CDDBF6;
        padding: 16px 24px;
        flex-shrink: 0;
        max-height: 66px;
        z-index: 1 !important;
    }
    
        .TopBarMobile{
            display: none;
        }
    
        /*Care Center Dropdown -------------------------------------------------------------*/
        .SwitchCareCenter .DropdownWrapper {
                position: relative;
                display: inline-block;
                width: auto;
                z-index: 0; /* ensures stacking context for children */
            }

            .SwitchCareCenter .DropdownButton {
                    position: relative;          /* <— REQUIRED */
                    z-index: 2;                  /* above the menu */
                    display: flex;
                    align-items: center;
                    justify-content: space-between;
                    gap: 16px;
                    padding: 8px 16px;
                    background: #CDDBF6;         /* solid so you can’t see the menu through it */
                    border-radius: 8px;
                    border: 1.5px solid #092854;
                    cursor: pointer;
                    color: #092854;
                    transition: transform 0.2s ease, box-shadow 0.2s ease;
                    min-width: 200px;
                }
    
            .SwitchCareCenter .DropdownButton span{
                    color: #092854;
                    font-family: Inter;
                    font-size: 14px;
                    font-style: normal;
                    font-weight: 500;
                    line-height: 20px;
                }
    
            .SwitchCareCenter .DropDownArrow{
                    /*margin-left: 8px;*/
                    transition: transform 0.3s ease;
                }
    
            .SwitchCareCenter .DropdownMenu {
                    position: absolute;
                    top: 100%;
                    left: 0;
                    background: #fff;
                    border-radius: 0 0 8px 8px;
                    box-shadow: 0 4px 10px rgba(0,0,0,.05);
                    padding: 20px 8px 8px 8px;
                    min-width: 200px;
                    margin-top: -12px;
                    z-index: 1 !important;       /* <— force lower than button; override stray rules */
                
                    /* slide-down animation (no display:) */
                    opacity: 0;
                    transform: translateY(-20px);
                    visibility: hidden;
                    transition: opacity .25s ease, transform .25s ease, visibility 0s linear .25s;
                }
    
            .SwitchCareCenter .DropdownItem {
                    padding: 8px 16px;
                    color: #092854;
                    font-family: Inter;
                    font-size: 14px;
                    font-style: normal;
                    font-weight: 500;
                    line-height: 20px;
                    transition: background 0.2s ease;
                    border-radius: 8px;
                }
            
            /*HOVER Care Center -------------------------------------*/
            .DropdownButton:hover {
                    transform: translateY(-3px);
                    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.10)
                }
    
            .DropdownItem:hover {
                    background-color: #CDDBF6;
                    border-radius: 8px;
                }
            /*HOVER Care Center End----------------------------------*/
            
            /*Active Care Center -------------------------------------*/
            .SwitchCareCenter .DropdownWrapper.active {
                
                .DropdownButton{
                    background-color: #0c1e42;
                }
    
                .DropdownButton span{
                    color: #fff;
                }
    
                .DropDownArrow {
                    transform: rotate(180deg);
                }
                
                .DropdownMenu {
                    opacity: 1;
                    transform: translateY(0);
                    visibility: visible;
                    transition: opacity .25s ease, transform .25s ease, visibility 0s;
                }
            } /*Active Care Center End-----------------------------------*/
        /*Care Center Dropdown End---------------------------------------------------------------*/
    
        /*Search Bar ---------------------------------------------------------------------------*!*/
        .Search_Input_Header{
            background: #F5F6F7;
            color: rgb(102, 102, 102);
            border: 1px solid rgb(245, 246, 247)
        }
    
        .Search_Container_Header {
            width: 100%; /* Adjust width as needed */
            max-width: 450px;
            min-width: 100px;
            margin-left: 10px;
            margin-right: 10px;
        }
        /*Search Bar End----------------------------------------------------------------------*!*/
    
        /*Profile Wrapper---------------------------------------------------------------------*!*/
        .ProfileWrapper{
            background: none;
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 0;
        }
            .NotificationBtn {
                display: flex;
                justify-content: center;
                align-items: center;
                border: none;
                outline: none;
                padding: 0;
                height: 100%;
                background: none;
                cursor: pointer;
                margin-right: 10px;
            }
        
            .NotificationIcon{
            }
            
            /*Dropdown Wrapper-------------------------------------------------------------*!*/
            .DropdownWrapper {
                position: relative;
                display: inline-block;
                width: auto;
            }

            .ProfileWrapper .DropdownButton{
                position: relative;
                display: flex;
                align-items: center;
                gap: 12px;
                background-color: #CDDBF6;
                border: none;
                outline: none;
                cursor: pointer;
                transition: transform 0.25s ease /*box-shadow 0.2s ease*/;
                border-radius: 8px;
                padding: 5px 8px;
                z-index: 3;
                /*border: 5px solid #0C1E42;*/
            }
            
            /*Profile Image Wrapper-------------*/
            .ProfileWrapper .ProfileImageWrapper{
                height:40px;
                width: 40px;
                background: none;
            }

            .ProfileWrapper .ProfileImage{
                height: 100%;
                width: 100%;
                border-radius: 50%;
                background: none;
                border: none;
            }
                    
            /*Profile Info Wrapper-------------*/
            .ProfileWrapper .ProfileInfoWrapper{
                display: block;
                justify-content: center;
                align-items: center;
                text-align: left;
                background: none;
                border: none;
            }

            .ProfileWrapper .ProfileInfoWrapper .Name{
                color: #151924;
                font-family: Inter;
                font-size: 14px;
                font-style: normal;
                font-weight: 500;
                line-height: 16px;
            }

            .ProfileWrapper .ProfileInfoWrapper .Email{
                color: #444750;
                font-family: Inter;
                font-size: 12px;
                font-style: normal;
                font-weight: 400;
                line-height: 14px;
            }

            .ProfileWrapper .DropDownArrow {
                transition: transform 0.3s ease;
            }
                    
        
            /*Dropdown Menu-----------------------------------------------*!*/
            .DropdownMenu {
                position: absolute;
                top: 100%;
                right: 0;
                background: #fff;
                box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
                border-radius: 0 0 8px 8px;
                gap: 6px;
                padding: 20px 8px 8px 8px;
                /*min-width: 240px;*/
                width: auto;
                margin-top: -12px;
                z-index: 1 !important;       /* <— force lower than button; override stray rules */
                /* slide-down animation (no display:) */
                opacity: 0;
                transform: translateY(-20px);
                visibility: hidden;
                transition: opacity .25s ease, transform .25s ease, visibility 0s linear .25s;
            }
        
            /*Dropdown Item----------------------------------*!*/
            .DropdownItem {
                display: flex;
                align-items: center;
                justify-content: flex-start;
                padding: 0 5px 0 0;
                margin: 3px 0 3px 5px;
                transition: background 0.2s ease;
                border-radius: 8px;
                gap: 12px;
            }
        
            /*Profile Image Wrapper-------------*/
            .DropdownItem .ProfileImageWrapper{
                height:40px;
                width: 40px;
                background: none;
            }
        
            .DropdownItem .ProfileImage{
                height: 100%;
                width: 100%;
                border-radius: 50%;
                background: none;
                border: none;
            }
        
            .DropdownItem .Initials{
                display: none;
            }
                        
            /*Info -------------*/
            .DropdownItem .Info{
                display: block;
                justify-content: center;
                align-items: center;
                text-align: left;
            }
        
            .DropdownItem .Name{
                color: #151924;
                font-family: Inter;
                font-size: 14px;
                font-style: normal;
                font-weight: 500;
                line-height: 16px;
            }
        
            .DropdownItem .Email{
                color: #444750;
                font-family: Inter;
                font-size: 12px;
                font-style: normal;
                font-weight: 400;
                line-height: 14px;
            }
            
            /*HOVER Profile Wrapper-------------------------------------------*!*/
            .ProfileWrapper .DropdownButton:hover{
                background-color: #CDDBF6;
                transform: translateY(-3px);
                box-shadow: none;
            }

            .ProfileWrapper .DropdownMenu .DropdownItem:hover {
                /*background-color: #CDDBF6;*/
                border-radius: 8px;
                background: linear-gradient(to right, #fff 7%, #cddbf6 7%);
            }
            /*HOVER Profile Wrapper End---------------------------------------*!*/
            /*ACTIVE Profile Wrapper ------------------------------------------*/
            .DropdownWrapper.active {
        
                .DropdownButton {
                    background: #0C1E42;
                    transition: background-color 0.25s;
                }
        
                .DropdownButton .ProfileImage{
                    /*border: 1.5px solid #fff;*/
                }
        
                .ProfileInfoWrapper .Name{
                    color: #fff;
                    font-weight: 400;
                }
        
                .ProfileInfoWrapper .Email{
                    color: #fff;
                    font-weight: 350;
                }
        
                .DropdownButton .DropDownArrow {
                    transform: rotate(180deg);
                }
        
                .DropdownMenu {
                    display: flex;
                    flex-direction: column;
                    opacity: 1;
                    transform: translateY(0);
                    visibility: visible;
                    transition: opacity .25s ease, transform .25s ease, visibility 0.5s;
                }
            }/*ACTIVE Profile Wrapper End------------------------------------------*/
    /*Top Bar End---------------------------------------------------------------------------------------------------------*/
     
    /*Middle Content Area ------------------------------------------------------------------------------------------------*/
    .ContentArea {
        flex-grow: 1;
        background-color: #f2f6ff;
        overflow-y: auto;
        z-index: 0 !important;
    }
    /*Middle Content Area  End--------------------------------------------------------------------------------------------*/

    /* Bottom Footer -----------------------------------------------------------------------------------------------------*/
    .Footer {
        display: flex;
        justify-content: space-between;
        align-items: center;
        background-color: #CDDBF6;
        padding: 24px;
        flex-shrink: 0;
        max-height: 40px;
    }
    
    .Footer .BtnFooter {
        background: none;
        outline: none;
        border: none;
        color: #092854;
        text-align: center;
        font-family: Inter;
        font-size: 10px;
        font-style: normal;
        font-weight: 500;
        line-height: normal;
    }
    /* Bottom Footer End--------------------------------------------------------------------------------------------------*/

    .TopBarMobile,
    #mobileDropdownSearch,
    #mobileDropdownMenu {
        display: none;
    }
    
    .MenuButton.is-active { background:#0C1E42; }
    .MenuButton.is-active .MenuText { color:#fff; }
}/* Right Side  End ----------------------------------------------------------------------------------------------------------------*/

/* Tablet and smaller devices (up to 768px) */
@media (max-width: 1175px) {
    .ProfileWrapper .DropdownButton{
        gap: 8px;
    }
    .DropdownWrapper .ProfileInfoWrapper .Name,
    .DropdownWrapper .ProfileInfoWrapper .Email {
        display: none !important;
    }

    .ProfileWrapper .DropdownItem{
        gap: 0px;
        justify-content: space-between;
    }

    .ProfileWrapper .DropdownItem .Initials{
        display: block;
        color: #0C1E42;
        font-family: Inter;
        font-size: 14px;
        font-style: normal;
        font-weight: 500;
    }

    .ProfileWrapper .DropdownMenu {
        /*left: -100% !important;*/
        width: auto;
    }

    .ProfileWrapper .DropdownItem .Info{
        display: none;
    }
}

/* Tablet and smaller devices (up to 768px) */
@media (max-width: 1024px) {
    /* Adjust container sizes */

}

/* Mobile devices (up to 576px) */
@media (max-width: 767px) {
    /* Stack containers vertically */
    body {
        flex-direction: column;
        height: auto;
        background-color: #F2F6FF;
    }

    .TopBarMobile {
        display: flex !important;
    }

    #mobileDropdownSearch,
    #mobileDropdownMenu {
        display: block !important;
    }

    .SidebarWrapper {
        display: none;
    }

    .TopBar {
        display: none;
    }

    .TopBarMobile {
        position: relative;
        z-index: 1000;
        display: flex;
        justify-content: center;
        align-items: center;
        height: 60px;
        width: 100%;
        background-color: #CDDBF6;
        padding: 0 24px 0 20px;
    }

    .TopBarMobile .ProfileWrapper {
        display: flex;
        justify-content: flex-start;
        align-items: center;
        height: 40px;
        width: 50%;
        gap: 16px;
        transition: width 0.3s ease;
    }

    .TopBarMobile .ProfileImage {
        height: 40px;
        width: 40px;
        border-radius: 50%;
    }

    .TopBarMobile .ProfileInfoWrapper {
        display: block;
        justify-content: center;
        align-items: flex-start;
    }

    .TopBarMobile .ProfileInfoWrapper .Name {

    }

    .TopBarMobile .ProfileInfoWrapper .Email {

    }

    .TopBarMobile .RightContainer {
        width: 50%;
        height: 40px;
        display: flex;
        gap: 16px;
        justify-content: flex-end;
        transition: width 0.3s ease;
    }

    .SearchIconMobile{
        display: flex;
        justify-content: center;
        align-items: center;
        width: auto;
        height: 100% ;
        cursor: pointer;
    }

    .SearchIconMobile .SearchIcon{
        cursor: pointer;
        height: 28px;
        width: 28px;
    }

    .CloseIconSearch{
        position: absolute;
        right: 8px;
        top: 50%;
        transform: translateY(-50%);
        height: auto;
        width: auto;
        transition: opacity 0.4s ease;
        opacity: 0;
    }

    #mobileDropdownSearch.active .CloseIconSearch{
        opacity: 1;
        pointer-events: auto;
    }

    .CloseSvgSearch{
        height: 20px;
        width: 20px;
    }

    /*Mobile Searchbar Popup ------------------------*/

    #mobileDropdownSearch .DropdownSearchWrapper {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        padding: 0;
        height: 100%;
        margin: 0;
        width: 100%;
    }

    .MobileInputWrapper{
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        height: 100%;
    }

    #mobileDropdownSearch .SearchInputMobile {
        width: 100%;
        height: auto;
        padding: 8px 16px;
        border-radius: 8px;
        background: #F5F6F7;
        color: #666;
        font-family: Inter;
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
        line-height: 20px;
        border: none;
        outline: none;
        box-sizing: border-box;
        transform: translateX(80%);
        transition: transform 0.3s ease, opacity 0.3s ease;
        opacity: 0;
    }

    #mobileDropdownSearch.active .SearchInputMobile{
        transform: translateX(0);
        opacity: 1;
        pointer-events: auto;
    }

    #mobileDropdownSearch.active .SearchInputMobile:focus {
        border: 1px solid #888;
    }

    .CloseSearchIcon{
        width: 10%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    #mobileDropdownMenu .DropdownWrapper {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 0;
        margin: 0;
        gap: 8px;
    }

    #closeIcon {
        display: none;
    }

    .MenuButtonMobile{
        padding: 16px;
        text-align: left;
        display: flex;
        width: 100%;
        border: none;
        background: none;
        cursor: pointer;
        transition: background 0.2s ease, transform 0.2s;
        border-radius: 8px;
    }

    .MenuButtonMobile:hover {
        border-radius: 8px;
        background: #EBF1FB;
        color: #092854;
        transform: translateY(-2px);
    }

    #mobileDropdownMenu .MenuText{
        color: #333;
        text-align: center;
        font-family: Inter;
        font-size: 16px;
        font-style: normal;
        font-weight: 500;
        line-height: normal;
    }


    .MobileAddBtn{
        border-radius: 4px;
        background: #EBF1FB;
        width: 100%;
        height: auto;
        display: flex;
        justify-content: center;
        align-items: center;
        border: none;
        cursor: pointer;
        transition: background 0.2s ease, transform 0.2s;
    }

    .MobileAddBtn .MobileAddContainer {
        padding: 16px;
        height: 100%;
        width: auto;
        border-radius: 0;
        text-align: center;
    }

    .MobileAddBtn:hover {
        border-radius: 8px;
        background: #CDDBF6;
        color: #092854;
        transform: translateY(-2px);
    }

    .MenuIconMobile{
        height: 24px;
        width: 24px;
    }

    #mobileDropdownSearch{
        display: flex;
        width: 100%;
        height: auto;
        padding: 0;
        box-sizing: border-box;
        transition: opacity 0.3s ease;
        opacity: 0;
        pointer-events: none; /* Prevent interaction when hidden */
        z-index: 1000;
        overflow-x: hidden;
    }

    #mobileDropdownSearch.active{
        opacity: 1;
        pointer-events: auto; /* Allow interaction when visible */
    }

    #mobileDropdownMenu {
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background-color: #f9f9f9;
        padding: 16px;
        box-sizing: border-box;
        transform: translateY(-100%);
        transition: transform 0.3s ease, opacity 0.3s ease;
        opacity: 0;
        pointer-events: none; /* Prevent interaction when hidden */
        z-index: 999;
    }

    #mobileDropdownMenu.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto; /* Allow interaction when visible */
    }

    #mobileSearchButton,
    #mobileMenuButton {
        background: none;
        border: none;
        padding: 0;
        cursor: pointer;
        outline: none;
    }
    /*Mobile Menu Popup End ------------------------*/

    .OverlayContent {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        backdrop-filter: blur(3px);
        -webkit-backdrop-filter: blur(3px); /* for Safari */
        background-color: rgba(0, 0, 0, 0.1);
        display: none;
        z-index: 900;
    }

    .Footer{
        display: none;
    }
}


/*In case something is wrong*/
/*.ProfileWrapper{*/
/*    background: none;*/
/*    display: flex;*/
/*    justify-content: center;*/
/*    align-items: center;*/
/*    z-index: 0;*/
/*}*/

/*.ProfileWrapper .DropdownWrapper{*/
/*    position: relative;*/
/*    display: inline-block;*/
/*    width: auto;*/
/*}*/

/*.NotificationBtn {*/
/*    display: flex;*/
/*    justify-content: center;*/
/*    align-items: center;*/
/*    border: none;*/
/*    outline: none;*/
/*    padding: 0;*/
/*    height: 100%;*/
/*    background: none;*/
/*    cursor: pointer;*/
/*    margin-right: 10px;*/
/*}*/

/*.NotificationIcon{*/
/*}*/

/*.ProfileWrapper .DropdownButton{*/
/*    position: relative;*/
/*    display: flex;*/
/*    align-items: center;*/
/*    gap: 12px;*/
/*    background: #CDDBF6;*/
/*    border: none;*/
/*    outline: none;*/
/*    cursor: pointer;*/
/*    transition: transform 0.2s ease !*box-shadow 0.2s ease*!;*/
/*    border-radius: 8px;*/
/*    padding: 5px 8px;*/
/*    z-index: 3;*/
/*    !*border: 5px solid #0C1E42;*!*/
/*}*/

/*.ProfileWrapper .DropdownButton:hover {*/
/*    background: none;*/
/*    transform: translateY(-3px);*/
/*    !*box-shadow: 0 2px 6px rgba(0, 0, 0, 0.10)*!*/
/*}*/

/*.ProfileWrapper .DropDownArrow {*/
/*    transition: transform 0.3s ease;*/
/*}*/

/*.ProfileWrapper .DropdownWrapper.active .DropdownButton{*/
/*    background: #0C1E42;*/
/*}*/

/*.ProfileWrapper .DropdownWrapper.active .DropDownArrow {*/
/*    transform: rotate(180deg);*/
/*}*/

/*.ProfileWrapper .DropdownWrapper.active .ProfileInfoWrapper .Name{*/
/*    color: #fff;*/
/*    font-weight: 400;*/
/*}*/

/*.ProfileWrapper .DropdownWrapper.active .ProfileInfoWrapper .Email{*/
/*    color: #fff;*/
/*    font-weight: 350;*/
/*}*/

/*.ProfileWrapper .DropdownMenu {*/
/*    position: absolute;*/
/*    top: 100%;*/
/*    right: 0;*/
/*    background: #fff;*/
/*    border-radius: 0 0 8px 8px;*/
/*    gap: 6px;*/
/*    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);*/
/*    padding: 20px 8px 8px 8px;*/
/*    !*min-width: 240px;*!*/
/*    width: auto;*/
/*    margin-top: -12px;*/
/*    z-index: 1 !important;       !* <— force lower than button; override stray rules *!*/
/*    !* slide-down animation (no display:) *!*/
/*    opacity: 0;*/
/*    transform: translateY(-20px);*/
/*    visibility: hidden;*/
/*    transition: opacity .25s ease, transform .25s ease, visibility 0s linear .25s;*/
/*}*/

/*!* 4) Active: show + slide *!*/
/*.ProfileWrapper .DropdownWrapper.active .DropdownMenu {*/
/*    opacity: 1;*/
/*    transform: translateY(0);*/
/*    visibility: visible;*/
/*    transition: opacity .25s ease, transform .25s ease, visibility 0s;*/
/*}*/

/*.ProfileWrapper .DropdownWrapper.active .DropdownMenu {*/
/*    display: flex;*/
/*    flex-direction: column;*/
/*}*/

/*.ProfileWrapper .DropdownItem {*/
/*    display: flex;*/
/*    align-items: center;*/
/*    justify-content: flex-start;*/
/*    padding: 0 5px 0 0;*/
/*    margin: 3px 0 3px 5px;*/
/*    transition: background 0.2s ease;*/
/*    border-radius: 8px;*/
/*    gap: 12px;*/
/*}*/

/*.ProfileWrapper .DropdownItem:hover {*/
/*    !*background-color: #CDDBF6;*!*/
/*    border-radius: 8px;*/
/*    background: linear-gradient(to right, #fff 7%, #cddbf6 7%);*/
/*}*/

/*.ProfileWrapper .ProfileImageWrapper{*/
/*    height:40px;*/
/*    width: 40px;*/
/*    background: none;*/
/*}*/

/*.ProfileWrapper .ProfileImage{*/
/*    height:40px;*/
/*    width: 40px;*/
/*    border-radius: 50%;*/
/*}*/

/*.ProfileWrapper .DropdownWrapper.active .ProfileImage{*/
/*    border: 1.5px solid #fff;*/
/*}*/

/*.ProfileWrapper .DropdownItem .ProfileImageWrapper{*/
/*    width: 40px;*/
/*    height: 40px;*/
/*    background: none;*/
/*    !*border-radius: 50%;*!*/
/*}*/



/*.ProfileWrapper .DropdownItem .ProfileImage{*/
/*    width: 40px;*/
/*    height: 40px;*/
/*    !*border-radius: 50%;*!*/
/*}*/

/*.ProfileWrapper .DropdownItem .Initials{*/
/*    display: none;*/
/*}*/

/*.ProfileWrapper .DropdownItem .Info{*/
/*    display: block;*/
/*    justify-content: center;*/
/*    align-items: center;*/
/*    text-align: left;*/
/*}*/

/*.ProfileWrapper .DropdownItem .Name{*/
/*    color: #151924;*/
/*    font-family: Inter;*/
/*    font-size: 14px;*/
/*    font-style: normal;*/
/*    font-weight: 500;*/
/*    line-height: 16px;*/
/*}*/

/*.ProfileWrapper .DropdownItem .Email{*/
/*    color: #444750;*/
/*    font-family: Inter;*/
/*    font-size: 12px;*/
/*    font-style: normal;*/
/*    font-weight: 400;*/
/*    line-height: 14px;*/
/*}*/

/*.ProfileWrapper .ProfileImage{*/
/*    height: 100%;*/
/*    width: 100%;*/
/*    border-radius: 50%;*/
/*    background: none;*/
/*    border: none;*/
/*}*/

/*.ProfileWrapper .ProfileInfoWrapper{*/
/*    display: block;*/
/*    justify-content: center;*/
/*    align-items: center;*/
/*    text-align: left;*/
/*    background: none;*/
/*    border: none;*/
/*}*/

/*.ProfileInfoWrapper .Name{*/
/*    color: #151924;*/
/*    font-family: Inter;*/
/*    font-size: 14px;*/
/*    font-style: normal;*/
/*    font-weight: 500;*/
/*    line-height: 16px;*/
/*}*/

/*.ProfileInfoWrapper .Email{*/
/*    color: #444750;*/
/*    font-family: Inter;*/
/*    font-size: 12px;*/
/*    font-style: normal;*/
/*    font-weight: 400;*/
/*    line-height: 14px;*/
/*}*/