.item {
	background: #eee;
	border: 1px solid black;
	padding: 1em;
	float: left;
	margin: 1em;
}

/* Show visual feedback which elements can be dragged */
.items .item {
	cursor: pointer;
}

.items .item:hover {
	background: #aaa;
}


.items .remove {
	display: none;
	cursor: normal;
}

.selected-plan {
	background: #ee0;
	border: 1px solid black;	
	height: 200px;
	padding: 1em;
}

.selected-plan .help-text {
	color: #aaa;
}

.selected-plan .remove {
	display: block;
	color: red;
	cursor: pointer;
}

/* Marker class for the target when item hovers over the target */
.item-arrived {
	background: #ffa;
}

