
      body {
          background-color: #ffffff; /* Color de fondo */
          display: flex;
          justify-content: center;
          align-items: center;
          min-height: 100vh;
          font-family: "Montserrat", sans-serif;
          margin: 0;
      }

      .container {
          width: 99%;
          max-width: 99%;
          max-height: 98vh;
          background: #e8edf3;
          border-radius: 25px; /* Bordes redondeados */
          box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
          /* padding: 20px; */
          display: flex;
          flex-direction: column;
          overflow: scroll;
            scrollbar-width: none; /* Para Firefox */
            -ms-overflow-style: none; /* Para Internet Explorer y Edge */
      }
      .container::-webkit-scrollbar {
          display: none; /* Para Chrome, Safari y Opera */
      }
      aside::-webkit-scrollbar {
          display: none; /* Para Chrome, Safari y Opera */
      }

      
        .header {
          justify-content: space-between; /* Separa los elementos: uno a la izq, otro a la der */
          position: sticky;
          top: 0;
          background: #e8edf3; /* Asegura que el fondo sea sólido */
          z-index: 10; /* Para que esté por encima del contenido */
          /* border-radius: 25px; */ /* Bordes redondeados en la parte superior */
          display: flex;
          /* justify-content: flex-end; */ /* Alinea los elementos a la derecha */
          align-items: center; /* Alinea verticalmente */
          padding: 10px;
          
      }

      

      .profile {
          display: flex;
          align-items: center;
      }

      .profile img {
          width: 40px;
          margin-right: 10px;
      }

      /* .grid-icon {
          font-size: 24px;
          cursor: pointer;
      } */

      .content {
          display: flex;
      }

      .sidebar {
          width: 250px;
          background: #0734be;
          padding: 20px;
          border-radius: 25px 0 0 25px;
      }

      .sidebar a {
          text-decoration: none;
          color: #666;
          display: block;
          padding: 10px;
          border-radius: 10px;
          margin-bottom: 10px;
      }

      .sidebar a.active {
          background: #dbe3eb;
          color: #0073b1;
      }

      .main-content {
          flex: 1;
          padding: 20px;
      }
      /* Ocultar el botón en pantallas grandes (mayores a 992px) */
      #headerCollapse {
          display: none;
      }

      /* Mostrar el botón solo cuando la pantalla sea menor a 992px (tablets y móviles) */
      @media (max-width: 992px) {
          #headerCollapse {
              display: block; /* Hace que el botón aparezca */
          }
      }
      
        .left-sidebar {
          
        position: fixed;
        width: 250px;
        /*Ajustasegúneltamañoquedeseesparatumenúlateral*/height: 100%;
        background-color: #ffffff;
        /*Fondoblanco,ajustaalcolordetuelección*/color: #000000;
        border-radius: 30px;
        -webkit-border-radius: 30px;
        -moz-border-radius: 30px;
        -ms-border-radius: 30px;
        -o-border-radius: 30px;
        background: white; /* Fondo blanco para que la sombra resalte */
        box-shadow: 4px 0 10px rgba(0, 0, 0, 0.1); /* Sombra hacia la derecha */
        margin: 10px;
        /* padding: 20px; */
        height: 97vh;
      }
      /* Contenedor del menú */


/* Estilo base para cada item */
.menu-item {
  display: flex;
  align-items: center;
  padding: 10px 15px;
  text-decoration: none;
  color: #555;
  position: relative; /* Importante para usar posicionamiento absoluto en pseudo-elementos */
  transition: background-color 0.3s ease;
}

.menu-item:hover {
  background-color: #eaeaea;
  color: inherit; /* Evita que cambie a azul */
  text-decoration: none; /* Asegura que no aparezca subrayado */
  border-radius: 0 25px 25px 0;
}

/* Ícono */
.menu-item .icon {
  width: 24px;
  height: 24px;
  margin-right: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.menu-item .icon img {
  max-width: 100%;
  max-height: 100%;
}

/* Texto */
.menu-item .text {
  font-size: 14px;
}

/* Item activo */
.menu-item.active {
  color: #000;
  font-weight: bold;
  background-color: #fff;
  /* Quitamos border-left si lo tenías antes */
}
.menu-item.active:hover {
  background-color: #eaeaea;
  color: inherit; /* Evita que cambie a azul */
  text-decoration: none; /* Asegura que no aparezca subrayado */
  border-radius: 0 25px 25px 0;
}
.menu-item.active:not(:hover) {
  /* background-color: #eaeaea; */
  color: inherit; /* Evita que cambie a azul */
  text-decoration: none; /* Asegura que no aparezca subrayado */
  border-radius: 0 25px 25px 0;
}
.menu-item:not(:hover) {
  /* background-color: #eaeaea; */
  color: inherit; /* Evita que cambie a azul */
  text-decoration: none; /* Asegura que no aparezca subrayado */
  border-radius: 0 25px 25px 0;
}

/* La barra azul “delante” del botón */
.menu-item.active::before {
  content: "";
  position: absolute;
  left: 0;     /* Barra en el extremo izquierdo */
  top: 0;      /* Empieza arriba */
  bottom: 0;   /* Llega hasta abajo */
  width: 4px;  /* Grosor de la barra */
  background: linear-gradient(135deg, #71B95E, #6FC7D8);
  z-index: 2;  /* Asegura que quede por encima del fondo del botón */
  border-radius: 0 10px 10px 0;
}
.menu-item .icon {
  /* Para que el contenedor sea un círculo */
  width: 30px;              /* Ajusta el tamaño según tu diseño */
  height: 30px;
  border-radius: 50%;

  /* Centra el ícono dentro del círculo */
  display: flex;
  align-items: center;
  justify-content: center;

  /* Color de fondo y sombra */
  background-color: #e8edf3;   /* O el color que desees */
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
}

/* Ajusta el tamaño del ícono si quieres */
.menu-item .icon img {
  width: 20px;              /* Ajusta el tamaño del ícono */
  height: auto;
}
.menu-item .icon svg path {
  fill: #8598ad; /* Color gris cuando NO está activo */
  transition: fill 0.3s ease-in-out;
}

.menu-item.active .icon svg path {
  fill: url(#miGradiente); /* Aplica el degradado cuando está activo */
}
.icono {
    width: 80px;    /* Ancho deseado */
    height: 80px;   /* Alto deseado */
    object-fit: contain; /* Ajusta la imagen sin distorsionar */
  }
  .iconopeque {
    width: 40px;    /* Ancho deseado */
    height: 40px;   /* Alto deseado */
    object-fit: contain; /* Ajusta la imagen sin distorsionar */
  }




 