/*Add circular highlight to current date number*/
.tribe-events-calendar-month__day--current .tribe-events-calendar-month__day-date-daynum {
	background: #34525c;
	color: #ffffff !important;
	width: 40px; 
	height: 40px;
	border-radius: 50%;
 	display: flex; /* or inline-flex */
 	align-items: center; 
 	justify-content: center;align-content
}

/*Add background to event listing*/
.tribe-events-calendar-month__calendar-event { 
	background: #eef3f5;
	border-radius: 10%;
}

/*Add hover background to event listing*/
.tribe-events-calendar-month__calendar-event:hover { 
	background: #bbcfd6;
	border-radius: 10%;
}

/*Make event title semi-bold*/
.tribe-events-calendar-month__calendar-event-title a { 
	font-weight:500;
}
