.full-page-loader {
  background: #ffffff;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}

table {
	border-collapse: collapse;
    width: 100%;
}

table thead tr {
	background-color: #eeefef;
	color: #575a5d;
	font-weight: bold;
	font-size: 14px;
	text-align: center;
}
table tbody td {
	color: #ffffff;
	border: 1px solid #ffffff;
  font-size: 13px;
  padding: 0.25em 1em 0.25em 0em;
}
table tbody tr {
	background-color: #7e7f81;
}
table tbody tr:nth-child(odd) {
	background-color: #575a5d;
}

.full-page-loader > img {
  animation: 1.8s infinite heartbeat;
}

@keyframes heartbeat {
  0% {
    transform: scale(1);
  }
  25% {
    transform: scale(1.05);
  }
  50% {
    transform: scale(1);
  }
  75% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}



.stickyColumn {
  position: sticky;
  left: 0; /* Adjust this value as needed */
  min-width: 100px;
  width: 100px;
}

.highlighted.stickyColumn {
  background-color: #7ab51d !important;
}


table tbody tr .stickyColumn{
	background-color: #7e7f81;
}
table tbody tr:nth-child(odd) .stickyColumn{
	background-color: #575a5d;
}
table thead tr .stickyColumn{
	background-color: #eeefef;
	color: #575a5d;
	font-weight: bold;
	font-size: 14px;
	text-align: center;
}