#cuerpo {
	.listadoPestanas {
		display: flex; flex-direction: row;
		.pestana {
			border: 1px solid var(--grisOscuro); border-bottom: none; border-radius: 5px 5px 0 0;
			padding: 2px 10px; cursor: pointer; line-height: 1.2;
			&.activo {background-color: var(--grisOscuro); color: snow;}
			&:not(.activo) {background-color: var(--amarilloMuyClaro);}
		}
	}
	.contenidoCuerpo {
		height: calc(100% - 30px); /* 30px es el alto de las pestañas */
		display: flex;
		overflow-y: hidden;
	}
}
