.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: 65px;
  background-color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 25px;
  border-bottom:  #D9D9D9 0.2px solid;
}

.body {
  margin-top: 65px; /* deja espacio solo al contenido, no al navbar */
  
}


.navbar .nav {
  display: flex;
  align-items: center;      /* <— para que el <a> (avatar incluido) quede centrado */
}

.nav-item{
  margin-right: 20px;    /* Espacio entre los enlaces */
}

.navbar .navbar-shadow {
  width: 100%;
  height: 65px;
  position: fixed;
  top: 0;
  left: 0;
  
}

.container-log {
  display: flex;
  align-items: center;
  margin-left: 25px;
}

.container-log img {
  
  height: 50px;
 
  
 
}



.navbar .nav-link {
  color: #6B7280 !important;
 
  font: 16px 'Inter', sans-serif !important;
  margin-top: 10px;
  background: transparent !important;
  border-bottom: none !important;
  margin-top: 0 !important;
  padding: 0.5rem 0.75rem; 
}


.navbar .nav-link.active {
  color: #4CC884 !important;
  font-weight: bold !important;
  
  position: relative;
    /* ajusta este valor para acercar/alejar aún más la línea */
}

.navbar .nav-link.active::after {
  content: "";
  position: absolute;
  bottom: -13px;
  color: #4CC884  !important;
  
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #4CC884  !important; 
  border-radius: 2px;
 
}


.navbar .nav-link.inactive {
  background: transparent !important;
  
}

.navbar .nav-link:hover {
  color: #4CC884 !important;
  transform:  scale(1.15);
  
}

.navbar .dropdown-menu {
  border-radius: 0.25rem;
  
}
.navbar .dropdown-item.active {
  background-color: #f1f1f1;
  font-weight: bold;
}

.user-info {
  display: flex;
  align-items: center;
  gap: 10px;
  border-radius: 5px;
  margin: 0;                 
  padding: 0;                
}



.user-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  
  
}

.user-name {
  font-family: 'Inter', sans-serif !important;
  font-size: 14px !important;
  font-weight: 500;
  color: #6B7280;
  margin-right: 10px;
}

.user-group{
    font-family: 'Inter', sans-serif !important;
    display: flex;
    font-size: 10px !important;
    color: #A6ABB4;
    margin-right: 5px;
  }




@media (max-width: 900.98px) {
 
a.nav-link{
  margin-left:20px;
  
}

a.icon-close{
  text-decoration: none !important;
}

.user-name {
  font-size: 0.95rem;
  font-weight: 500;
  color: #374151;
}


.user-group {
  font-size: 0.75rem;
  color: #9CA3AF;
}


.icon-close-img{
  width: 25px;
  height: 25px;
}




  .navbar .nav-link.active::after {
    display: none;
  }

  .navbar .nav-link.active {
     
    font-weight: bold !important;
    position: relative;
    border: none !important;
 
  
  
  }

  div.d-flex.align-items-center.gap-3.px-2{
    display: flex;
    width: 60%;
  }

  div.mt-2.px-2.d-flex.justify-content-end{
    
    display: flex;
    justify-content: flex-end;
  }

  a.nav-link.active{
    width: 34%;
   
  }

  .user-name {
    font-size: 1rem;
    text-align: left;
    
  }

  .user-group {
    font-size: 0.8rem;
    color: #6b7280;
  }

  .offcanvas-body {
    align-items: flex-start !important;
  }

  .navbar-nav {
    gap: 10px;
  }


 
}
