/* Estilo específico para el menú del botón CREAR */
.dropdown-menu-crear {
  position: absolute;

  left: 0;
  z-index: 999;
 
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  padding: 0.5rem 0;
  background-color: #ffffff;
  min-width: 240px;
  
}

/* Estilo de cada item del menú CREAR */
.dropdown-menu-crear a {
  display: flex;
  align-items: center;
  padding: 12px 20px;
  color: #2c3e50;
  text-decoration: none;
  font-weight: 500;
  border-left: 4px solid transparent;
  transition: all 0.25s ease;
}

/* Hover sobre item del menú CREAR */
.dropdown-menu-crear a:hover {
  background-color: #eaf3ff;
  border-left: 4px solid #1d72b8;
  color: #1d3557;
}

/* Íconos del menú CREAR */
.dropdown-menu-crear a i {
  margin-right: 10px;
  width: 20px;
  text-align: center;
  color: #6B8BF3;
  transition: color 0.3s ease;
}

/* Hover sobre ícono del menú CREAR */
.dropdown-menu-crear a:hover i {
  color: #145a86;
}


/* Animación de aparición */
@keyframes fadeSlide {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


