@import url('https://fonts.googleapis.com/css?family=Roboto');

table.data{
	border-collapse: collapse;
	font-family: 'Roboto', sans-serif;
	border-bottom: 1px solid hsla(100,0%,60%,1);
	font-size: 10pt;
	/*box-shadow: 2px 2px 10px 3px gray;*/
}

table.data input,select{
	border: 1px solid hsla(0, 0%, 60%, .9);
	background: transparent;
	border-radius: 4px;
	padding: 2px;
	font-size: 10pt;
	-webkit-appearance: none;
}

table.data input:disabled, select:disabled{
	border: none;
}

table.data input:hover,select:hover{
	background: hsla(50, 100%, 50%, .15);
}

table.data input:focus,select:focus{
	border-color: hsla(200,100%, 50%, .75);
	background: hsla(200, 100%, 90%, .75);
}

table.data input[type="button"], input[type="submit"]{
	box-shadow: 1px 1px 2px 1px hsla(0,0%, 0%, 0.25);
}

table.data input[type="button"]:hover, input[type="submit"]:hover{
	box-shadow: 1px 1px 2px 1px hsla(0,0%, 0%, 0.5);
	font-weight: bold;
	cursor: pointer;
}

table.data a:link{
	text-decoration: underline;
}

table.data a:hover{
	text-shadow: 1px 1px 4px hsla(200,100%, 50%, .9);
}


table.data tr:nth-child(odd){
	background: hsla(0, 0%, 80%, 0.8);
}

table.data th{
	padding: 5px 20px;
	white-space: nowrap;
	border-right: 1px solid black;
	border-left: 1px solid black;
	background: blue;
	color: white;
	font-size: 12pt;
}

table.data td{
	padding: 2px 4px;
	border: 1px solid hsla(100,0%,60%,1);
	white-space: nowrap;
}

.commit{
	box-shadow: 0 0 4px 2px hsla(100,100%, 50%, .75);
}


.error{
	box-shadow: 0 0 4px 2px hsla(100,100%, 50%, .75);
}

.edit{
	box-shadow: none;
	transition: box-shadow 2s ease-in-out;
}

table.data tr.filter{
	border-top: none;
	border-bottom: 2px solid black;
}

table.data tr.filter input[type='text']
{
	font-style: italic;
	color: gray;
}

table.data tr.new{
	border-top: 2px solid black;
	border-bottom: 2px solid black;
	background: hsla(110, 50%, 65%, .5);
}

table.data tr#assign{
	border-top: 2px solid black;
	border-bottom: 2px solid black;
	background: hsla(80, 40%, 75%, .5);
}


/**********************************/
/*BEGIN DROPDOWN SEARCH DEFINITION*/
/**********************************/
div.search_container{
	position: relative;
	border: 1px solid hsla(0, 0%, 70%, .9);
	font-family: 'Roboto', sans-serif;
	font-size: 10pt;
}


div.search_container input{
	margin: 1px;
	border: none;
	outline: none;
}

div.search_arrow{
	float: right;
	height: 100%;
	text-align: center center;
	cursor: pointer;
	font-size: 16pt;
}

div.search_dropdown{
	position: absolute;
	max-height: 500px;
	width: 100%;
	border: 1px solid hsla(0, 0%, 70%, .9);
	background: hsla(50, 100%, 50%, .15);
	z-index: 500;
	overflow: auto;
	display: none;
	padding: 2px;
}

div.search_entry{
	white-space: nowrap;
	text-align: left;
}

div.search_entry:hover{
	background: yellow;
	cursor: pointer;
}
/********************************/
/*END DROPDOWN SEARCH DEFINITION*/
/********************************/
