/** Change the size and colour of the widget title */
.tribe-events-list-widget widget-title {
	color: gray;
	font-size: 60px;
}

/** Make each event standout with a new background and border */
.tribe-events-list-widget li.tribe-events-list-widget-events {
 	background: white;
	border: 1px solid #495056;
	padding: 10px;
}

/** Make each event title uppercase and underline them */
.tribe-events-list-widget h4.entry-title a {
	text-decoration: underline;
	text-transform: uppercase;
}

/** Make the event date/time information a little more prominent */
.tribe-events-list-widget div.duration {
	color: white;
	font-weight: bold;
	transform: rotate( -4deg );
}