.sidebar-menu{
  border-left: 3px solid #003399;

}

.sidebar-menu-nav-link{
  width: 100%;
  border: 1px solid #ccc;
  border-radius: 4px;
  margin-bottom: 5px;
  color: #003399;
  font-weight: 600;
  text-align: left;
  background-color: #fff;
  transition: 0.3s;
  padding: 10px;
  display: flex;
  align-items: center;
  gap: 50px;
  & p, h1, h2, h3, h4, h5, h6{
    margin-bottom: 0;
  };

  & span, i{
    font-size: 1.2rem;
  }
}

.sidebar-menu-nav-link.active{
  background-color: #003399;
  & p, h1, h2, h3, h4, h5, h6{
    color: #fff!important;
  };

}

.sidebar-menu-nav-link:hover{
  background-color: #e6f0ff;
}

.submenu{
  display: block;
  margin-left: 15px ;
}

.sidebar-menu-nav-link.sub{
  font-size: 14px;
  font-weight: 500;
}

.content-section{
  display: none;
}

.content-section.active{
  display: block;
}