.list-table {
    width: 100%;
    border-collapse: collapse;
    border: solid 1px #717171;
}

.list-table tr:hover td,
.list-table tr.selected td {
    background: #ccc;
}

.list-table th,
.list-table td {
    border: solid 1px #717171;
    padding: 7px 5px 7px 10px;
}

.list-table th {
    background: #4f4f4f;
    font-family: 'Hind Siliguri', sans-serif;
    color:#fff;
    position: relative;
}

.list-table th i {
    position: absolute;
    right: 5px;
    top: 5px;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.4s
}

.list-table th i:hover {
    transform: rotate(180deg);
}

.list-table td {
    color: #515151;
    font-family: 'Hind Siliguri', sans-serif;
    cursor: pointer;
    position: relative;
}

.list-table td.number-col {
    text-align: center;
}

.list-table td.entry-id {
    width: 50px;
    background:#dae8eb;
    text-align: center;
}

.list-table td.entry-name {
    width: 400px;
}


.list-table tr.new-row td {
    height: 30px;
    background: #f6ffed;
}

.list-table tr.new-row td {
    height: 30px;
    background: #f6ffed;
}

.list-table tr.manual td {
    background: #f5dca9;
}

.list-table tr.deleted td {
    background: #ccc;
    color:#999;
}

.list-table tr:nth-child(odd) {
    background: #f1f1f1;
}

.list-table td i {
    display:inline-block;
    font-size: 20px;
    cursor: pointer;
	margin:4px;
}

.list-table td.approved {
    background:#cae3ce !important;
}

.list-table td.skipped {
    background:#ebd1c7 !important;
}


.list-table td span.additional-data {
    float: right;
}

.list-table td li > span.additional-data:nth-child(2),
.list-table td > span.additional-data:nth-child(2) {
    width: 100px;
}

.list-table td li > span.additional-data:nth-child(1),
.list-table td > span.additional-data:nth-child(1) {
    width: 70px;
}


.list-table td.actions-col {
    text-align: center;
    width: 1%;
    min-width: 10px;
    padding: 2px 10px;
	white-space: nowrap;
}

.inrow-edit {
    position: absolute;
    width: 100%;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    outline: none;
    padding: 0 10px;
    font-family: 'Hind Siliguri', sans-serif;
    background: #d9f4ff;
    border: none;
	box-sizing: border-box;
}

.list-table tr.new-row input:focus{
	background:#e4edc2;
}

.list-table tr input.field-error {
	background:#fcbdb8;
}