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

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

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

table.data input:hover,select:hover{
	border: 1px solid yellow;
	background: white;
}


table.data tr:nth-child(odd){
	background: #CCC;
}

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

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

.commit{
	border-color: green;
}

.edit{
	border-color: blue;
}

.error{
	border-color: red;
}

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 SEARCH DEFINITION*/
.search_container{
	/*position: relative;*/
	padding: 0px;
	margin: 0px;
}

.search_dropdown{
	position:absolute; 
    max-height:500px; 
    border:1px green solid; 
    background:white; 
    z-index:500; 
    overflow:scroll;
    display:none;
}

/*******************************/
/*BEGIN CLEAR BUTTON DEFINITION*/
/*******************************/
button.clear{
	font-size: 6pt;
	border-width: 0px;
	border-radius: 10px;
	padding: 1px;
	color: hsla(100,0%,20%,1);
	border-color: hsla(100,0%,50%,1);
	background: hsla(0,0%,100%,.25);
	width: 20px;
	text-align: center center;
}

button.clear[disabled]{
	color: hsla(100,0%,80%,1);
	border-color: hsla(100,0%,60%,1);
}

button.clear[enabled]:hover{
	color: black;
	border-color: black;
	background: hsla(100,0%,90%,.75);
	font-weight: bold;
}

button.clear[enabled]:active{
	color:white;
	font-weight:bold;
	background: hsla(100,0%,20%,1);
	border: 1px black solid;
}
/*****************************/
/*END CLEAR BUTTON DEFINITION*/
/*****************************/

/**********************************/
/*BEGIN DROPDOWN SEARCH DEFINITION*/
/**********************************/

div.search_container{
	position: relative;
}

div.search_dropdown{
	position: absolute;
	max-height: 500px;
	border: 1px green solid;
	background: white;
	z-index: 500;
	overflow: scroll;
	display: none;
}

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

div.search_entry:hover{
	background: yellow;
	cursor: pointer;
}


/********************************/
/*END DROPDOWN SEARCH DEFINITION*/
/********************************/
