/**********************************************************************************

	put here your custom CSS code to modify the design of IceTheme template
	
	* We strongly reccommend you to not edit other CSS or Less files as in 
	case you will update the template all your changes might be lost.	
	
**********************************************************************************/

/* Fondo y contenedor del menú lateral */
#sidebar .inside {
    background: #f3f7ec;
    border: 1px solid #d7e2c7;
    border-radius: 10px;
    padding: 18px;
    box-sizing: border-box;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

/* Separación interna de los módulos */
#sidebar .moduletable {
    margin-bottom: 0;
}

/* Título del menú */
#sidebar .moduletable_heading,
#sidebar h3 {
    margin: 0 0 16px 0;
    padding: 12px 15px;
    background: #e4edd5;
    border-left: 5px solid #6f9300;
    border-radius: 6px;
    color: #365000;
    font-size: 22px;
    line-height: 1.3;
}

/* Espaciado de los enlaces */
#sidebar ul {
    margin: 0;
    padding: 0;
}

#sidebar li {
    margin-bottom: 5px;
}

#sidebar a {
    display: block;
    padding: 7px 8px;
    border-radius: 5px;
    transition: background 0.2s ease;
}

#sidebar a:hover {
    background: #e1ebd2;
    text-decoration: none;
}

/* Ajuste para celular */
@media screen and (max-width: 767px) {
    #sidebar .inside {
        padding: 14px;
        margin-bottom: 20px;
    }
}