#todoapp {
	border: 1px solid #ccc;
	position: relative;
	border-top-left-radius: 2px;
	border-top-right-radius: 2px;
	box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.2),
				0 25px 50px 0 rgba(0, 0, 0, 0.15);
    margin-bottom: 1em;
}

#todoapp input {
    font-size: 18px;
    line-height: 18px !important;
    box-shadow: none;
    border: 0;
    background-color: inherit;
    transition: none;
}
table#items {
    background-color: #fff;
    margin: 0;
}
table#items > tbody > tr {
    background-color: transparent !important;
}
table#items > tbody > tr:nth-of-type(2n+1) {
    background-color: #f9f9f9 !important;
}
table#items input,
table#items textarea {
    font-size: 14px;
    line-height: 14px;
    width: 90%;
    border: 0;
    background: transparent;
    box-shadow: none;
    outline: none;
}
table#items input:not([disabled]):hover, 
table#items input:not([disabled]):active, 
table#items input:not([disabled]):focus, 
table#items textarea:not([disabled]):hover, 
table#items textarea:not([disabled]):active, 
table#items textarea:not([disabled]):focus {
    background-color: rgba(200,100,100, .2) !important;
}

table#items textarea { resize: none; }

html input[disabled] { 
    background-color: transparent; 
    cursor: not-allowed !important;
}

table td {
    position: relative;
    cursor: default;
}
tr:hover .destroy {
	display: block;
}

td .destroy {
	display: none;
	position: absolute;
	top: 0;
	right: 10px;
	bottom: 0;
	width: 20px;
	height: 20px;
	margin: auto 0;
	font-size: 22px;
	color: #a88a8a;
    border: 0;
    background-color: transparent;
    right: 5px;
    cursor: pointer;
}

td .destroy:hover {
	text-shadow: 0 0 1px #000,
				 0 0 10px rgba(199, 107, 107, 0.8);
	-webkit-transform: scale(1.3);
	-moz-transform: scale(1.3);
	-ms-transform: scale(1.3);
	-o-transform: scale(1.3);
	transform: scale(1.3);
}

td .destroy:after {
	content: '✖';
}

#items .title { width:40%; }
#items .qty,
#items .unit,
#items .unitPrice,
#items .tax,
#items .taxPrice,
#items .total { width:10%; }

.button-cell { position: relative; }
