.main_left {
    background-color: #4e5e5f!important; 
    overflow: auto; 
    max-height: 100vh;
}
.main_right {
    overflow: auto; 
    max-height: 100vh;
}
/* NAV LAYOUT ///////////////////////////////////////////// */
.nav_bar{
    width: 80px;
    background-color: #4e5e5f!important;
    overflow: hidden; 
    max-height: 100vh;
    transition: width 0.3s ease;
    padding-right: 0px;
}
.top_nav_bar {
    background-color: #4e5e5f!important;
    color: #fff!important;
    display: none;
    margin-left: 0px;
}
.top_nav_bar_external {
    background-color: #4e5e5f!important;
    color: #fff!important;
    margin-left: 0px;
}

@media only screen and (max-width: 600px) {
    .nav_bar_expanded{
        width: 100vw!important;
        height: 100vh!important;
        visibility: visible;
        padding-left: 12px;
        padding-right: 12px;
        margin-left: 0px;
    }
    .top_nav_bar {
      display: block;
    }

    .nav_bar{
        visibility: hidden;
        width: 0px;
        height:0px;
        padding: 0px;
    }

    .header {
        display: none;
    }
    .footer_expanded{
        /* width: 95%!important; */
        width: 365px!important;
    }
  }

.theme_primary_font {
    color: #4e5e5f;
}
.nav_bar .header img{
    max-width: 35px;
}
.nav-link > .link_text{
    display: none;
    text-decoration: none;
}

.nav_bar_full{
    width: 500px;
    visibility: visible;
    padding-left: 12px;
    padding-right: 12px;
}

.nav_bar_expanded{
    width: 250px;
    visibility: visible;
    padding-left: 12px;
    padding-right: 12px;
}
    .nav_bar_expanded .link_text{
        display: inline!important;
        color:{{business.theme['secondary']}};
    }
    .nav_bar_expanded img{
        max-width: 40px!important;
    }

.main_menu {
    overflow: auto!important; 
    max-height: calc(100vh - 300px);
    scrollbar-width: none;
}

.header {
    text-align: center;
    overflow:hidden;
}
.footer {
    position: absolute;
    border-top: 1px solid #fff;
    bottom: 5px;   
    width: 60px;
    text-align: center;
    /* overflow:hidden; */
}
.footer_expanded{
    width: 225px;
}


.content_section {
    overflow: auto; 
    max-height: 100vh;
}

::-webkit-scrollbar {
    width: 6px;
}
/* Track */
::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px grey; 
    border-radius: 10px;
  }
   
  /* Handle */
  ::-webkit-scrollbar-thumb {
    background: #4e5e5f; 
    border: white 1px solid;
    border-radius: 10px;
  }
  
  /* Handle on hover */
  ::-webkit-scrollbar-thumb:hover {
    background: #4e5e5f; 
  }

  /* NAV LAYOUT ///////////////////////////////////////////// */
.heading_title{
    color: #4e5e5f!important;
}

.nav-tabs .nav-link {
    color: #4e5e5f!important;
}

.nav-link.active {
    background-color: #4e5e5f!important;
    color: #fff!important;
}

.save_button {
    background-color: #4e5e5f!important;
    color: #fff!important;
}

.switch_button:checked {
    background-color: #4e5e5f!important;
    color: #fff!important;
}

.card_style{
    /* border: 1px solid #4e5e5f; */
    border: 1px solid transparent;
    box-shadow: 2px 5px 1rem #4e5e5f;
}
.card_body_style{
    /* border-bottom: 1px solid #4e5e5f;
    border-top: 1px solid #4e5e5f; */
}
.img_button_img{
    max-width: 75px;
}
.img_button{
    border: 1px solid transparent;
    background-color: transparent;
}

.img_button_header{
    max-width: 150px;
}

.loading-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
  }
  

  
  .loading-text {
    margin-top: 10px; /* Adjust the margin as needed */
    color: black; /* Text color */
    font-size: 16px; /* Adjust the font size as needed */
    font-weight: bold; /* Adjust the font weight as needed */
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5); /* Optional text shadow for better visibility */
  }
  
  @keyframes rotate {
    from {
      transform: rotate(0deg);
    }
    to {
      transform: rotate(360deg);
    }
  }
  
  