/* MAVA */


/** Place a border around the entire widget */
.tribe_mini_calendar_widget {
	border: 20px solid black;
}

/** Change the widget title colour and size */
.tribe_mini_calendar_widget h2.widget-title {
	color: purple;
	font-size: 30px;
}

/** Set of rules that change the colour of the date markers from dark grey to red */
.tribe_mini_calendar_widget .list-date {
	background: red;
}

/** This rule works with the previous one, but specifically targets the day of the week */
.tribe_mini_calendar_widget .list-date .list-dayname {
	color: red;
}

/** This rule underlines and changes other event title properties */
.tribe_mini_calendar_widget h2.entry-title a {
	display: inline-block;
	text-decoration: underline;
	transform: rotate( -2deg );
}

/** This rule changes the colour of the event date/time information */
.tribe_mini_calendar_widget div.duration {
	color: saddlebrown;
}