
/* random additional styles for a more real-world situation */
td.name {
	font-weight: bold;
}
td.email {
	color: #666;
	text-decoration: underline;
}

/* form styles */
input, select {
	font: inherit;
	margin: 0;
	padding: 4px;
}
.input-text {
	min-width: 150px;
	background-color: #fff;
	border: 1px solid #ccc;
}
select {
	min-width: 150px;
}
label {
	margin: 0 4px 0 8px;
}



/* Filtable styles */
tr.hidden {
	display: none;
}
tr:nth-child(odd) > td {
	background-color: #191c24;
}
tr:nth-child(even) > td {
	background-color: #191c24;
}
tr.odd > td {
	background-color: #191c24;
}
tr.even > td {
	background-color: #191c24;
}



.large-table {
	width: 100%;
}
.large-table td {
	font-size: 12px;
}