#searchBar {
	background-image: url('search-icon.png');
	background-position: 8px 8px; 
	background-repeat: no-repeat;
	width: 100%;
	font-size: 16px;
	padding: 12px 20px 12px 40px;
	border: 1px solid #ddd;
	margin-bottom: 12px;
	box-sizing: border-box;
}

#events {
	width: 100%;
	table-layout: fixed;
	font-size: 16px;
	border: 1px solid #ddd;
	border-collapse: collapse;
}

#events th:hover {
	cursor: pointer;
}

#events th, #events td {
	text-align: left;
	padding: 12px;
}

#events thead {
	display: table;
	width: 100%;
	table-layout: fixed;
}

#events tbody {
	height: 60vh;
	overflow: auto;
	display: block;
	width: 100%;
}

#events tbody tr {
	display: table;
	width: 100%;
	table-layout: fixed;
}

#events tr.header, #events tr:hover {
	background-color: #f1f1f1;
}
