/**
 * DigitalManufacturingStyles.css v1.0
 * Copyright 2024 Digital Manufacturing by Miba IIOT All Rights Reserved.
 * This file contains the standard colors, fonts, buttons and all other
 * standard thigs in regards for the template.
 * DO NOT MODIFY/CHANGE ANY CODE INSIDE THIS FILE
 */
body{
    font-family: 'Mulish-Regular';
}
:root {
    /*Colors*/
    --ms-green: #1CA063;
    --ms-red: #DC3545;
    --ms-orange: #FD9843;
    --ms-yellow-strong: #FFDA6A;
    --ms-yellow-bright: #FFDF7D;
    --ms-blue-pale: #2F3F67;
    --ms-blue-strong: #182A58;
    --ms-grey-dark: #D5DEFB;
    --ms-grey-mid: #EEEFFF;
    --ms-grey-light: #F5F7FB;
    --ms-grey-sys: #BBBBBB;
    --ms-grey-sys-mid: #EBEBEB;
    --ms-white: #FFFFFF;
    /*Gradients*/
    --ms-gradient-grey: linear-gradient(270deg, #E7F0FF 0%, #CFE2FF 98.73%);
    --ms-gradient-yellow: linear-gradient(270deg, #FFE698 0%, #FFDD73 98.73%);
    --ms-gradient-orange: linear-gradient(270deg, #FFB678 0%, #FD9843 98.73%);
    --ms-gradient-red: linear-gradient(270deg, #F95F6E 0%, #DC3545 98.73%);
    --ms-gradient-green: linear-gradient(270deg, #3EB880 0%, #10985A 98.73%);
    /*
    --breakpoint-xs: 0;
    --breakpoint-sm: 576px;
    --breakpoint-md: 768px;
    --breakpoint-lg: 992px;
    --breakpoint-xl: 1200px;*/
    --ff-mulish-regular: "Mulish-Regular";
    --ff-mulish-bold: "Mulish-Bold";
    --ff-mulish-extra-bold: "Mulish-Extra-Bold";
    --ff-mulish-semi-bold: "Mulish-Semi-Bold";
    --ff-mulish-light: "Mulish-Light";
    --ff-mulish-exra-light: "Mulish-Extra-Light";
    --ff-mulish-italic: "Mulish-Italic";
}

@font-face { /*Mulish-Regular*/
    font-family: "Mulish-Regular";
    src: url("../fonts/mulishFont/Mulish-Regular.ttf");
}
@font-face { /*Mulish-Bold*/
    font-family: "Mulish-Bold";
    src: url("../fonts/mulishFont/Mulish-Bold.ttf");
}
@font-face { /*Mulish-Extra-Bold*/
    font-family: "Mulish-Extra-Bold";
    src: url("../fonts/mulishFont/Mulish-ExtraBold.ttf");
}
@font-face { /*Mulish-Semi-Bold*/
    font-family: "Mulish-Semi-Bold";
    src: url("../fonts/mulishFont/Mulish-SemiBold.ttf");
}
@font-face { /*Mulish-Light*/
    font-family: "Mulish-Light";
    src: url("../fonts/mulishFont/Mulish-Light.ttf");
}
@font-face { /*Mulish-Extra-Light*/
    font-family: "Mulish-Extra-Light";
    src: url("../fonts/mulishFont/Mulish-ExtraLight.ttf");
}
@font-face { /*Mulish-Italic*/
    font-family: "Mulish-Italic";
    src: url("../fonts/mulishFont/Mulish-Italic.ttf");
}

/* Text/Background - Colors  */
.text-ms-green {
    color: var(--ms-green);
}
.bg-ms-green {
    background-color: var(--ms-green);
}
.text-ms-red {
    color: var(--ms-red);
}
.bg-ms-red {
    background-color: var(--ms-red);
}
.text-ms-orange {
    color: var(--ms-orange);
}
.bg-ms-orange {
    background-color: var(--ms-orange);
}
.text-ms-yellow-strong {
    color: var(--ms-yellow-strong);
}
.bg-ms-yellow-strong {
    background-color: var(--ms-yellow-strong);
}
.text-ms-yellow-bright {
    color: var(--ms-yellow-bright);
}
.bg-ms-yellow-bright {
    background-color: var(--ms-yellow-bright);
}
.text-ms-blue-pale {
    color: var(--ms-blue-pale);
}
.bg-ms-blue-pale {
    background-color: var(--ms-blue-pale);
}
.text-ms-blue-strong {
    color: var(--ms-blue-strong);
}
.bg-ms-blue-strong {
    background-color: var(--ms-blue-strong);
}
.text-ms-grey-dark {
    color: var(--ms-grey-dark);
}
.bg-ms-grey-dark {
    background-color: var(--ms-grey-dark);
}
.text-ms-grey-mid {
    color: var(--ms-grey-mid);
}
.bg-ms-grey-mid {
    background-color: var(--ms-grey-mid);
}
.text-ms-grey-light {
    color: var(--ms-grey-light);
}
.bg-ms-grey-light {
    background-color: var(--ms-grey-light);
}
.text-ms-grey-sys {
    color: var(--ms-grey-sys);
}
.bg-ms-grey-sys {
    background-color: var(--ms-grey-sys);
}
.text-ms-grey-sys-mid {
    color: var(--ms-grey-sys-mid);
}
.bg-ms-grey-sys-mid {
    background-color: var(--ms-grey-sys-mid);
}
.text-ms-white {
    color: var(--ms-white);
}
.bg-ms-white {
    background-color: var(--ms-white);
}

/* Gradients */
.gradient-ms-grey {
    background: var(--ms-gradient-grey);
}
.gradient-ms-yellow {
    background: var(--ms-gradient-yellow);
}
.gradient-ms-orange {
    background: var(--ms-gradient-orange);
}
.gradient-ms-red {
    background: var(--ms-gradient-red);
}
.gradient-ms-green {
    background: var(--ms-gradient-green);
}

/* Fonts */
.text-mulish-regular {
    font-family: var(--ff-mulish-regular);
}
.text-mulish-bold {
    font-family: var(--ff-mulish-bold);
}
.text-mulish-extra-bold {
    font-family: var(--ff-mulish-extra-bold);
}
.text-mulish-semi-bold {
    font-family: var(--ff-mulish-semi-bold);
}
.text-mulish-light {
    font-family: var(--ff-mulish-light);
}
.text-mulish-exra-light {
    font-family: var(--ff-mulish-exra-light);
}
.text-mulish-italic {
    font-family: var(--ff-mulish-italic);
}

/* Custom buttons*/
.custom-modal-header .close{
    opacity: 1 !important;
}
.custom-modal-close-btn{
    box-shadow: none;
}

.custom-modal-close-btn:hover{
    color: var(--ms-red) !important;
}

.custom-modal-close-btn:not(:hover) {
    background-color: #00000000 !important;
    border-color: #ffffff00 !important;
    color: var(--ms-blue-pale);
}

/* CUSTOM COMPANY DROPDOWN*/

.custom-dropdown-menu{
    border-radius: 0.7rem !important;
    padding: 0.7rem 0.7rem 0rem 0.7rem;
    border: none !important;
    max-width: 310px;
    min-width: 290px;
     
}
.custom-dropdown-item-title{
    font-size: 1rem;
    margin: 0;
}

.custom-dropdown-item{
    margin-bottom: 0.7rem;
    border-radius: 0.7rem !important;
}

.custom-dropdown-item:hover, .custom-dropdown-item:focus {
    color: #344767;
    background-color: #e9ecef;
    border-radius: 0.7rem !important;
}

.custom-dropdown-image{
    border-radius: 0.7rem;
}


.custom-dropdown-menu-user{
    border-radius: 0.7rem !important;
    border: none !important;
    padding: 0rem;
    max-width: 313px;
    min-width: 310px;
}

/* User dropdown css*/
#dropdownUserName{
    font-size: 1.1rem;
    margin: 0;
}


/*-- END --*/
/*SIDEBAR - COMPANY*/

#sidebarCompanyImage{
    border-radius: 0.5rem;
}

.user-panel img{
    width: 2.8rem !important;
}

.user-panel .image{
    padding-left: 0.4rem;
}

.sidebarCompanyHeadline{
    font-size: 1rem;
}

.sidebar-custom-user-panel{
    margin-top: 0rem !important;
    margin-bottom: 1rem !important;

    padding-bottom: 0rem !important;
    padding-top: 1rem !important;
}
/*-- END --*/
/* - - - - - - - USED FOR DARK / LIGHT MODE - - - - - - - */
/* CUSTOM SIDEBAR COLOR - */


.custom-sidebar-light{
    background-color: var(--ms-grey-light);
}

.custom-sidebar-light .nav-treeview>.nav-item>.nav-link {
    color: var(--ms-blue-pale);
}

.custom-sidebar-light .nav-sidebar>.nav-item>.nav-link.active, .sidebar-light-primary .nav-sidebar>.nav-item>.nav-link.active, 
.custom-sidebar-light .nav-sidebar>.nav-item>.nav-link.active {
    background-color: var(--ms-blue-pale);
    color: var(--ms-white);
}

.custom-sidebar-light .sidebar a {
    color: var(--ms-blue-pale);
}
/*
.custom-sidebar-light .nav-item>.nav-link:focus, .custom-sidebar-light .nav-item>.nav-link:hover {
    background-color: var(--ms-blue-pale);
    color: var(--ms-grey-mid);
}*/
/*
.custom-sidebar-light .custom-nav-link-child:hover .nav-icon{
    background-color: var(--ms-grey-dark);
    color: var(--ms-blue-pale);
}*/
.custom-sidebar-light .nav-treeview > .nav-item:hover, .custom-sidebar-light .nav-treeview > .nav-item.active{
    background-color: var(--ms-grey-dark);
    color: var(--ms-blue-pale);
}

[class*=custom-sidebar-light] .user-panel{
    border-color: var(--ms-blue-pale);
}

.sidebar-icon-light{
    color: var(--ms-blue-pale);
}

.custom-sidebar-company-headline-light{
    color: var(--ms-blue-pale);
}

[class*=custom-sidebar-light] .custom-sidebar-divider{
    border-color: var(--ms-blue-pale);
}

[class*=custom-sidebar-light] .custom-sidebar-appstore-container{
    color: var(--ms-blue-pale);
}

[class*=custom-sidebar-light] .custom-sidebar-appstore-container:hover{
    color: var(--ms-blue-pale);
    background-color: var(--ms-grey-dark);
}

.custom-sidebar-dropdown-light .dropdown-item{
    color: var(--ms-blue-pale);
}

.custom-sidebar-dropdown-light{
    background-color: var(--ms-grey-light);
}

.custom-sidebar-dropdown-light > .dropdown-item:focus, .custom-sidebar-dropdown-light > .dropdown-item:hover {
    color: var(--ms-blue-pale) !important;
    text-decoration: none;
    background-color: var(--ms-grey-dark)
}

.content-wrapper-light {
    background-color: var(--ms-grey-mid);
}

.custom-navbar-light{
    background-color: var(--ms-grey-light);
}

[class*=custom-navbar-light] .nav-link{
    color: var(--ms-blue-pale);
}

.custom-dropdown-menu-light{
    background-color: var(--ms-grey-light);
    box-shadow: 0 8px 26px -4px rgba(20, 20, 20, 0.15), 0 8px 9px -5px rgba(20, 20, 20, 0.06);
}
.custom-dropdown-menu-light > .custom-dropdown-item{
    color: var(--ms-blue-pale);
}
.custom-dropdown-menu-light > .custom-dropdown-item:hover, .custom-dropdown-menu-light > .custom-dropdown-item.active{
    color: var(--ms-blue-pale) !important;
    text-decoration: none;
    background-color: var(--ms-grey-dark)
}

.custom-dropdown-menu-user-light{
    background-color: var(--ms-grey-light);
    box-shadow: 0 8px 26px -4px rgba(20, 20, 20, 0.15), 0 8px 9px -5px rgba(20, 20, 20, 0.06);
}


[class*=custom-sidebar-light] .sidebarCompanyNameContainer{
    color: var(--ms-blue-pale);
}

[class*=custom-dropdown-menu-user-light] .dropdown-item-user, [class*=custom-dropdown-menu-user-light] .dropdown-item-user:active, 
[class*=custom-dropdown-menu-user-light] .dropdown-item-user:hover{
    color: var(--ms-blue-pale);
    user-select: none;
    background-color: transparent;
}

.custom-sidebar-dropdown-headline-light{
    background-color: var(--ms-grey-dark);
    color: var(--ms-blue-pale);
}

.custom-sidebar-light .menu-is-opening.custom-sidebar-dropdown-group{
    border-color: var(--ms-grey-dark) !important;
}

.custom-sidebar-light .custom-navlink-parent{
    background-color: var(--ms-grey-dark) !important;
    color: var(--ms-blue-pale) !important;
}

/*Dark*/


.custom-sidebar-dark{
    background-color: var(--ms-blue-pale);
}

.custom-sidebar-dark .nav-treeview>.nav-item>.nav-link {
    color: var(--ms-white);
}

.custom-sidebar-dark .nav-sidebar>.nav-item>.nav-link.active, .sidebar-light-primary .nav-sidebar>.nav-item>.nav-link.active, 
.custom-sidebar-dark .nav-sidebar>.nav-item>.nav-link.active {
    background-color: var(--ms-white);
    color: var(--ms-blue-pale);
}

.custom-sidebar-dark .sidebar a {
    color: var(--ms-white);
}
/*
.custom-sidebar-dark .nav-item>.nav-link:focus, .custom-sidebar-dark .nav-item>.nav-link:hover {
    background-color: var(--ms-white);
    color: var(--ms-blue-pale);
}*/
/*
.custom-sidebar-dark .custom-nav-link-child:hover .nav-icon{
    background-color: var(--ms-blue-strong);
    color: var(--ms-white);
}*/

.custom-sidebar-dark .nav-treeview > .nav-item:hover, .custom-sidebar-dark .nav-treeview > .nav-item.active{
    background-color: var(--ms-blue-strong);
    color: var(--ms-white);
}

[class*=custom-sidebar-dark] .user-panel{
    border-color: var(--ms-white);
}

.sidebar-icon-dark{
    color: var(--ms-white);
}

.custom-sidebar-company-headline-dark{
    color: var(--ms-white);
}

[class*=custom-sidebar-dark] .custom-sidebar-divider{
    border-color: var(--ms-white);
}

[class*=custom-sidebar-dark] .custom-sidebar-appstore-container{
    color: var(--ms-white);
}

[class*=custom-sidebar-dark] .custom-sidebar-appstore-container:hover{
    color: var(--ms-white);
    background-color: var(--ms-blue-strong);
}

.custom-sidebar-dropdown-dark .dropdown-item{
    color: var(--ms-white);
}

.custom-sidebar-dropdown-dark{
    background-color: var(--ms-blue-pale);
}

.custom-sidebar-dropdown-dark > .dropdown-item:focus, .custom-sidebar-dropdown-dark > .dropdown-item:hover {
    color: var(--ms-white) !important;
    text-decoration: none;
    background-color: var(--ms-blue-strong)
}

.content-wrapper-dark {
    background-color: var(--ms-blue-strong);
}

.custom-navbar-dark{
    background-color: var(--ms-blue-pale);
    box-shadow: 1px 5px 11px 0px #1E273D;
    border-bottom-color: var(--ms-blue-pale) !important;
}

[class*=custom-navbar-dark] .nav-link{
    color: var(--ms-white);
}

.custom-dropdown-menu-dark{
    background-color: var(--ms-blue-pale);
    box-shadow: 0 8px 26px -4px rgba(20, 20, 20, 0.15), 0 8px 9px -5px rgba(20, 20, 20, 0.06);
}
.custom-dropdown-menu-dark > .custom-dropdown-item{
    color: var(--ms-white);
}
.custom-dropdown-menu-dark > .custom-dropdown-item:hover, .custom-dropdown-menu-dark > .custom-dropdown-item.active{
    color: var(--ms-white) !important;
    text-decoration: none;
    background-color: var(--ms-blue-strong)
}

.custom-dropdown-menu-user-dark{
    background-color: var(--ms-blue-pale);
    box-shadow: 0 8px 26px -4px rgba(20, 20, 20, 0.15), 0 8px 9px -5px rgba(20, 20, 20, 0.06);
}

[class*=custom-sidebar-dark] .sidebarCompanyNameContainer{
    color: var(--ms-white);
}

[class*=custom-dropdown-menu-user-dark] .dropdown-item-user, [class*=custom-dropdown-menu-user-dark] .dropdown-item-user:active, 
[class*=custom-dropdown-menu-user-dark] .dropdown-item-user:hover{
    color: var(--ms-white);
    user-select: none;
    background-color: transparent;
}

.custom-sidebar-dropdown-headline-dark{
    background-color: var(--ms-blue-strong);
    color: var(--ms-white);
}

.custom-sidebar-dark .menu-is-opening.custom-sidebar-dropdown-group{
    border-color: var(--ms-blue-strong) !important;
}

.custom-sidebar-dark .custom-navlink-parent{
    background-color: var(--ms-blue-strong) !important;
    color: var(--ms-white) !important;
}


/* - - - - - - - E N D - - - - - - - */
.custom-sidebar-light .sidebarCompanyNameContainer{
    opacity: 0.8;
}
.own-custom-modal{
    position: fixed;
    top: 400px;
    left: 470px;
    z-index: 1050;
    overflow: hidden;
    outline: 0px;
    display: none;
}
.custom-modal-content{
    -webkit-backdrop-filter: saturate(200%) blur(30px);
    backdrop-filter: saturate(200%) blur(30px);
    background-color: rgba(255, 255, 255, 0.5) !important;
    border-radius: 0.7rem;
    border: none;
}

.custom-modal-content{
    border-top-right-radius: 0.7rem !important;
    border-top-left-radius: 0.7rem !important;
}
.custom-modal-title{
    font-family: 'Mulish-Bold';
    letter-spacing: 0.08rem;
    font-size: 1.4rem;
}

.custom-nav-tabs .nav-link.active{
    background-color: #182A58;
}

#userSettingsModalProfilePicture {
    border-radius: 0.7rem;
    width: 100px;
    height: auto;
    padding: 0rem !important;
    border: 0.06rem solid var(--ms-blue-strong);
}

.bootstrap-select .dropdown-item.active,.bootstrap-select .dropdown-item:active {
    color: #fff;
    text-decoration: none;
    background-color: var(--ms-blue-pale);
}

[data-id="userSettingsTabLanguageSelect"], [data-id="userSettingsTabDarkModeSelect"]{
    width: 5rem !important;
}

[data-id="userSettingsTabLanguageSelect"], [data-id="userSettingsTabDarkModeSelect"],
[data-id="userSettingsTabLanguageSelect"]:active, [data-id="userSettingsTabDarkModeSelect"]:active,
[data-id="userSettingsTabLanguageSelect"]:focus, [data-id="userSettingsTabDarkModeSelect"]:focus{
    background-color: transparent !important;
    color: var(--ms-blue-pale) !important;
    border-color: transparent !important;
    outline: 0px !important;
}

[data-id="userSettingsTabLanguageSelect"]:hover, [data-id="userSettingsTabDarkModeSelect"]:hover{
    background-color: transparent;
    border-color: var(--ms-blue-pale);
}

.userSettingsSelectOuter{
    width: 5rem;
}

.custom-modal-dark-button:hover{
    transition: background-color 1s, color 1s;
    background-color: var(--ms-blue-pale);
    color: var(--ms-white);
}

#userButtonsDropdownContainer,
.buttonContainer{
    height: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
/*
.userButtonsDropdownContainerButton{
    border: 1px solid var(--ms-blue-pale);
    padding: 0.01rem;
}*/

.userButtonsDropdownContainerButton:hover{
    cursor: pointer;
}

#logoutUserButton:hover{
    color: var(--ms-red);
}
#openUserSettingsButton:hover{
    color: inherit;
}

.custom-sidebar-appstore-container{
    width: 100%;
    height: 80%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.custom-sidebar-appstore-container:hover{
    border-radius: 0.25rem;
    cursor: pointer;
}

.custom-modal-header{
    border-top-right-radius: 0.7rem;
    border-top-left-radius: 0.7rem;
    background-color: #00000000;
    color: var(--ms-blue-strong);
}

.custom-sidebar-divider{
    border-top: 1px solid #dee2e6;
    margin-bottom: 1rem;
}
.custom-padding-0-3{
    padding: 0.1rem;
}

#navbarUserLanguage{
    position: absolute;
    bottom: -5px;
    right: -5px;
    width: 20px; /* Adjust the width of the badge as needed */
    height: 20px; /* Adjust the height of the badge as needed */
}

#navbarUserImage{
    height: 2.5rem;
    border-radius: 0.4rem;
}

/*Push menu section*/
#pushmenuContainer{
    padding-top: 1rem;
    padding-left: 1.7rem;
    margin-bottom: 0.8rem;
}
#pushmenuIcon{
    font-size: 1.4rem;
}

/* breakpoint to toggle between two burger menus*/
.nav-item-custom-breakpoint {
    display: none;
}
@media (max-width: 991.98px){
    .nav-item-custom-breakpoint {
        display: inline;
    }
}

.custom-nav-item{
    height: 2.5rem;
    width: 2.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 0.625rem;
    border: 1px solid;
}

#userWelcomeText{
    font-size: 1.2rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 0.0625rem;
}

.customSwalPopup{
    backdrop-filter: saturate(200%) blur(30px) !important;
    background: rgba(255, 255, 255, 0.17) !important;
    border-radius: 16px !important;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1) !important;
    backdrop-filter: blur(3.8px) !important;
    border: 1px solid rgba(255, 255, 255, 1) !important;
    color: var(--ms-blue-pale) !important;
}

.customSwalTransparent > .swal2-success-circular-line-left,
.customSwalTransparent > .swal2-success-fix,
.customSwalTransparent > .swal2-success-circular-line-right
{
    background-color: transparent !important;
}

.swal2-success.customSwalTransparent{
    border-color: var(--ms-green) !important;
}

.customSwalTransparent > .swal2-success-line-tip,
.customSwalTransparent > .swal2-success-line-long
{
    background-color: var(--ms-green) !important;
}

.customSwalOkButton{
    background-color: transparent !important;
    color: var(--ms-blue-pale) !important;
    border: 1px solid var(--ms-blue-pale) !important;
}

.customSwalOkButton:hover{
    background-color: var(--ms-blue-pale) !important;
    color: white !important;
    border: none;
}
/*
[data-id="userSettingsTabLanguageSelect"]{
    width: 50px !important;
    height: 41px !important;
    background-color: #ffffff00;
    border: 1px solid #F1F1F1;
    border-radius: 10px;
}

[data-id="userSettingsTabLanguageSelect"]:hover{
    border-color: #2F3F67;
    background-color: #0000;
}*/

.custom-sidebar-scroll::-webkit-scrollbar{
    display: none;
}

.sidebar:hover{
    scrollbar-width: none !important;
}

.sidebar-collapse.sidebar-mini .main-sidebar .nav-sidebar .nav-link, 
.sidebar-collapse.sidebar-mini-md .main-sidebar .nav-sidebar .nav-link, 
.sidebar-collapse.sidebar-mini-xs .main-sidebar .nav-sidebar .nav-link{
    width: 3.6rem !important;
}

.custom-sidebar-dropdown-item{
    display: flex;
    align-items: center;
}

.custom-sidebar-dropdown-headline{
    margin-bottom: 0.4rem !important;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: start;
    padding-left: 0.8rem;
    border-top-left-radius: 0.25rem;
    border-top-right-radius: 0.25rem;
}

.custom-sidebar-dropdown-group{
    border: 2px solid rgba(255, 255, 255, 0);
    border-radius: 0.3rem;
}
.menu-is-opening.custom-sidebar-dropdown-group{
    border: 2px solid white;
    border-radius: 0.3rem;
}



.menu-is-opening .custom-navlink-parent{
    border-top-left-radius: 0.1rem !important;
    border-top-right-radius: 0.1rem !important;
    border-bottom-right-radius: 0rem !important;
    border-bottom-left-radius: 0rem !important;
}

#userTree{
    gap: 0.5rem
}

#userTreeDropdownElements{
    z-index: 99999;
    position: absolute;
}

.custom-nav-link-child{
    padding: 0.5rem 0rem !important
}


.custom-nav-link-child-icon{
    padding: 0.5rem;
    margin: 0px 0.5rem !important;
    border-radius: 0.5rem;
}

.nav-sidebar .nav-treeview>.nav-item>.nav-link>.nav-icon {
    width: 2.6rem;
    height: 1.5rem;
}

.fas.custom-nav-link-child-icon{
    font-size: 1.2rem !important;
}

.custom-sidebar-dropdown-item-icon{
    min-width: 1.7rem !important;
    min-height: 1.7rem !important;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-right: 0.5rem;
}

body:not(.sidebar-collapse) .custom-sidebar-dropdown-group .nav-item{
    border-top-left-radius: 0.4rem;
    border-bottom-left-radius: 0.4rem;
}

.nav-search { list-style: none; margin: 0; padding: 0; }
.nav-search .nav-search-input { padding: .25rem .5rem; }
.nav-search .nav-search-input .form-control { font-size: .85rem; height: calc(1.5em + .5rem); }
.nav-search .form-control { border-radius: .25rem; }

/* Dropdown search bar styling */
.dropdown-search-container {
    border-bottom: 1px solid #eee;
    background: #f8f9fa;
}
#dropdownListContainer {
    max-height: 250px;
    overflow-y: auto;
}

.environment-label {
    font-size: 1rem;
    font-weight: 900; 
    text-transform: uppercase;
    color: #FD9843; 
    padding: 0.2rem 0.5rem;
    font: text-mulish-extra-bold;
    border: 1px solid #FD9843;
    border-radius: 4px;
    background-color: #F5F7FB;
    line-height: 1.5;
    animation: pulse-environment 5s infinite alternate ease-in-out;
}

/* Define the keyframes for the pulsating animation */
@keyframes pulse-environment {
    0% {
        opacity: 0.8;
        transform: scale(1);
        box-shadow: 0 0 5px #FD9843; 
    }
    50% {
        opacity: 1;
        transform: scale(1.03);
        box-shadow: 0 0 5px #FFB678;
    }
    100% {
        opacity: 0.8;
        transform: scale(1);
        box-shadow: 0 0 5px #FD9843;
    }
}


.notification.dropdown-item {
    color: var(--ms-blue-pale);
}

.notification-unread.dropdown-item {
    padding-left: 0.5rem;
    background-color: var(--ms-grey-dark);
    color: var(--ms-blue-pale);
    border-left: 0.5rem solid var(--ms-green);
}

#notificationPreview .dropdown-item:active,
#notificationPreview .dropdown-item:focus {
    background-color: transparent !important;
    color: inherit !important;
    outline: none;
    box-shadow: none;
}

#notificationPreview .dropdown-item:hover {
    filter: brightness(0.94);
}

#notificationModal .card-body {
    max-height: 50vh;
    overflow-y: auto;
}

#notificationModal .notification-unread {
    background-color: var(--ms-grey-dark);
    border: var(--ms-blue-strong) solid 2px;
    border-left: 0.5rem solid var(--ms-green);
}

#notificationModal .notification {
    background-color: var(--ms-grey-light);
    border: var(--ms-blue-strong) solid 2px;
    padding-left: 0.5rem;
}

.notification-actions {
    margin: auto;
}

.notificationFilterOuter {
    min-width: fit-content;
}

/* Responsive: stack buttons vertically if few, grid if more than 2 */
@media (max-width: 500px) {
    .notification-actions {
        grid-template-columns: 1fr;
    }
}

/* long module names in sidebar */
.dropdown-sidebar .nav-link {
  display: flex; 
  align-items: center; 
  border-top: 1px solid #e0e0e0; 
  margin-bottom: 0 !important;
} 
.nav-icon { 
  flex-shrink: 0; 
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  align-self: center;
} 

.custom-navlink-parent .nav-icon {
    margin: 0 !important;
}
.custom-navlink-parent p {
    margin-left: 0.7rem !important;
}

.custom-nav-link-child p { 
  margin: 0; 
  flex-grow: 1; 
  white-space: normal;
  max-width: 70%;
} 

#notificationCountBadge {
    top: 5px; 
}