body {
  margin: 0;
   font-family: 'Poppins', sans-serif;
}

.nav-logo {
  display: block;
  margin-left: 0;  
}

#sidebar {  
  background-color: #f9f9f9;
  height: 100%;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  gap: 10px;  
  padding: 0px 10px 0px 15px;
  text-align:left;
  scrollbar-width: none;
  -ms-overflow-style: none;
  overflow-y: hidden;
}

#sidebar::-webkit-scrollbar {
  display: none;
}

.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

#navbarList{
  display: flex;   
  flex-direction: column;
  gap: 10px;
}

.bottom-nav-list {
  list-style: none;  
  padding: 0;
  margin: 0;
  display: flex;   
  flex-direction: column;
  gap: 10px;
}

.nav-item {  
  cursor: pointer;  
  display: flex;
  align-items: center;
  justify-content: space-between;    
}

.nav-item:hover:not(.disabled):not(.active) {
  background-color: none;
}

.nav-item.disabled {
  color: #aaa;
  cursor: not-allowed;
}

.nav-item-label {
  padding: 10px;
}

.nav-item .label {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  font-size: 14px;
  font-weight: 400;
}

.nav-icon-box {
  background-color: #e0e0e0;              
  padding: 10px;
  width: 25px;
  height: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
}

/* .tag-new {
  background-color: #ffd700;
  color: #000;
  font-size: 10px;
  padding: 2px 5px;
  border-radius: 3px;
  margin-left: 5px;
} */

.nav-item.active {  
  color: inherit;
  font-weight: bold;
}
.nav-item.active .nav-icon-box {
  background-color: #000;
  color: #fff;
}
.nav-item.active .tag-new {
  background-color: #fff;
  color: #FFF;
}

.child-list {
  list-style: none;
  padding:5px;       
  margin: 5px 0 0 5px;
  border-left: 1px solid #8E9096;
  display: none;
}

.child-list .nav-item {
  border: none;
  padding: 10px;
  font-size: 14px;
  font-weight: 400;  
  justify-content: flex-start;
}

.child-list .nav-item.active {
  background-color: #E8E9EA;
  border-radius: 55px;
  font-size: 14px;
  font-weight: 400;
}

.tooltip {
  position: relative;
}

/* .tooltip:hover::after {
  content: attr(data-tooltip);
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  background: #333;
  color: #fff;
  padding: 4px 8px;
  white-space: nowrap;
  font-size: 12px;
  border-radius: 4px;
  margin-left: 8px;
} */

.toggle {
  font-size: 18px;
}


.no-bg {
  background: none !important;
  box-shadow: none !important;
}

