.nav-item{
  width: 100%;
  list-style: none;
}
.nav-link{
  
  padding: 8px;
  font-size: 16px;
  text-decoration: none;
  color: #232323;
  font-weight: 700;
}
.dropdown-menu{
  width:100%;
  border: none;
  box-shadow: none;
}
    .nav-link:hover {
      color: var(--text-color);
      background: var(--light-gray-bg);
      font-weight: bold;
      border-radius:10px 10px 0 0;
    }


    /* Expandable Dropdown */
    .submenu {
      display: none;
      background: var(--light-gray-bg);
      border-radius: 0 0 10px 10px;
      padding-left: 0;
    }

    .submenu li{
      font-size: 16px;
      font-weight: 500;
      padding: 8px 0;
      padding-left:20px;
      list-style: none;
    }
        .dropdown-item:hover {
      background: #F7FAFF;
      color: var(--text-color);
      font-weight: bold;
    }

    .submenu.show {
      display: block;
    }

    /* Remove default Bootstrap arrow */
    .dropdown-toggle::after {
      display: none;
    }

    /* Custom Plus/Minus Icon */
    .dropdown-toggle {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    .dropdown-toggle span{
      font-size: 25px;
      font-weight: normal ;
    }
    
    