.worklist-header-buttons:hover,
.worklist-bottom-buttons:hover {
	box-shadow: 0 0 5px grey;
}

.worklist-header-box {
	display: flex;
	height: 10%;
}

.worklist-header-title {
	width: calc(50% - 20px);
	margin: 10px;
}

.worklist-header-options {
	width: 50%;
	display: flex;
	justify-content: flex-end;
}

.worklist-header-buttons {
	width: 25x;
	height: 25px;
	margin: 5px;
	padding: 5px;
	border-radius: 5px;
}

.worklist-bottom-options {
	display: flex;
	margin-top: 15px;
	justify-content: flex-end;
}

.worklist-bottom-buttons {
	width: 15%;
	margin: 0 20px;
	padding: 5px;
	text-align: center;	
	border-radius: 5px;
	border: solid 1px gainsboro;
}

.worklist-table-box {
	height: 80%;
	overflow-y: scroll;
}

.worklist-table {
	min-width: 100%;
	border-collapse: collapse;
}

.worklist-thead {
	position: sticky;
	top: 0;
	background: rgb(41, 40, 31);
	text-align: center;
}

.worklist-th:first-child,
.worklist-td:first-child {
	width: 35px;
	text-align: center;
}

.worklist-th, .worklist-td {
	height: 35px;
	padding: 5px;
	border: 1px solid #cecfd5;
}

.worklist-row:nth-child(even) {
	background: gainsboro;
}

.worklist-row:hover {
	color: white;
	cursor: pointer;
	background-color: rgb(88, 88, 86);
}

.worklist-inputs {
	border: 0;
	width: 90%;
	height: 30px;
	color: white;
	font-weight: 600;
	text-align: center;
	background: rgb(41, 40, 31);
}

.tdL {
	text-align: left;
}

.tdC {
	text-align: center;
}

.tdR {
	text-align: right;
}