/* Make all headings left align  excetp titles */
th.title, th.short-title{
	text-align: center;
}
th{
	text-align: left;
}

th.topic, td.topic 
{
text-transform: capitalize;	
}
/* Tidy up search box */
.dataTables_filter input {
	border: 1px solid #e6e9ee;
}

/* Hide mobile/tablet only columns */
th.short-title, td.short-title, th.link, td.link {
	display: none;
}

@media screen and (max-width: 950px){
	
	/* hide desktop only data*/
	th.title,td.title{
		display: none;
	}
	
	/* make un-hidden */
	th.short-title,td.short-title{
		display: table-cell;
	}	

	/* feedback for end users they can open for more info */
	td:hover:after {
		content: "\f0d7";
		display: inline-block;
		font: normal normal normal 14px/1 FontAwesome;
		font-size: 1.3em;
		right: 0;
		position: absolute;
		padding-right: 0.5em;
	}
	
	
	/* improve responsiveness and mobile styling */
	table#scholarhips {
		display: block;
		overflow-x: auto;
	}
	select[name=scholarhips_length] {
		display: inline;
	}
	#content .paginate_button {
		border: 1px solid #EDEDED;
	}
		
	#scholarhips td li {
  		white-space: normal; /* prevent horizontal scrolling!*/
	}
}