/* Contenedor principal */
.menu-lateral {
	/* margin: 20px 0; */
}

/* Botón de toggle */
.menu-lateral-toggle {
	display: inline-block;
	background: #388e3c;
	color: #fff;
	/* padding: 10px 15px; */
	border-radius: 6px;
	text-decoration: none;
	font-weight: bold;
	margin-bottom: 10px;
	transition: background 0.3s ease;
}

.menu-lateral-toggle:hover {
	background: #2e7d32;
}

/* Lista oculta por defecto */
.menu-lateral ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: none;
	/* inicia cerrado */
}

/* Enlaces */
.menu-lateral ul li a {
	display: flex;
	align-items: center;
	padding: 3px 16px;
	text-decoration: none;
	color: #356531;
	transition: all 0.2s ease;
	font-size: 18px;
	font-weight: bold ;
}


/* Hover */
.menu-lateral ul li a:hover,
.menu-lateral ul li a.selected {
	color: #FFCC00;
}

@media (min-width: 768px) {
	.menu-lateral .menu-lateral-toggle{
		display: none;
	}
	.menu-lateral ul{
		display: block;
	}
}