/* Lists = The collection of list titles at the top */
/* List = The table used to show each list when one list name is clicked */

#lists {
	width: 90%;
	margin: auto;
	box-shadow: inset 0 0 12px rgba(0,0,0,0.5);
	border: 1px solid #777777;
	border-radius: 24px;
	background-color: #0088FF44;
	text-align: center;
}

#lists span {
	display: inline-block;
	width: 22%;
	box-shadow: inset 0 0 12px rgba(0,0,0,0.5);
	border: 1px solid #777777;
	border-radius: 24px;
	background-color: #FFFFFF66;
	padding-top: 10px;
	margin: 4px;
	font-size: 25px;
	height: 38px;
}

#lists span:hover {
	background-color: #FFFFFF99;
}

#list, #fav_list {
	table-layout: auto;
	width: 90%;
	margin: 50px auto;
	min-width: 700px;
}

#list caption, #fav_list caption {
	box-shadow: inset 0 0 12px rgba(0,0,0,0.5);
	border: 1px solid #777777;
	border-radius: 24px;
	background-color: #0088FF22;
	width: 300px;
	height: 31px;
	font-size: 20px;
	padding-top: 8px;
	margin: 10px;
}

#list thead, #fav_list thead {
	box-shadow: inset 0 0 20px rgba(0,0,0,0.7);
	border-radius: 24px;
	color: #004db9;
}

#list th, #fav_list th {
	text-align: left;
	padding: 15px 15px 0px 15px;
	font-size: 20px;
	line-height: 25px;
	background-color: #FFFFFF66;
}

#list th:first-child, #fav_list th:first-child {
	border-top-left-radius: 24px;
	border-bottom-left-radius: 24px;
}

#list th:last-child, #fav_list th:last-child {
	border-top-right-radius: 24px;
	border-bottom-right-radius: 24px;
}

#list td span, #fav_list td span {
	display: block;
	box-shadow: inset 0 0 7px rgba(0,0,0,0.4);
	border: 1px solid #777777;
	border-radius: 24px;
	background: #FFFFFF66;
    font-family: 'roboto', sans-serif;
	margin: 6px 6px 0 0;
	line-height: 27px;
	padding: 5px 0px 5px 15px;
	color: #333
}

#list td span.alternate, #fav_list td span.alternate {
    background-color: #0088FF11;
}

#list_container {
	width: 100%;
	height: 300px;
	margin-bottom: 100px;
}