.custom-table {
	width: 100%;
	border-collapse: collapse;
	background-color: #fff;
	font-size: 16px;
}
.custom-table th, .custom-table td {
	border: 1px solid #ddd;
	padding: 4px;
	text-align: center;
}
.custom-table th {
	background-color: #e7f4fd; /*light blue = #e7f4fd; wecheck green = #2aa118*/
	color: #000;
	font-weight: 700;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	position: relative;
}

.custom-table th:first-child, .custom-table td:first-child {
	min-width: 40px; /* Adjust the min-width as needed */
	max-width: 60px;
	background-color: #e7f4fd;
	padding: 0; /* Remove padding for the first cell */
}
.custom-table th:first-child img {
	width: 95%; /* Set the image width */
	object-fit: cover; /* Ensure the image covers the specified dimensions */
	display: block; /* Ensure the image is treated as a block-level element */
	margin: 0 auto; /* Center the image horizontally */
}
.custom-table td:not(:first-child) {
	background-color: transparent;
}
.custom-table tr:nth-child(even) {
	background-color: #f2f2f2;
}
.custom-table tr:hover {
	background-color: #eaeaea;
}

.checkmark svg, .cross svg {
	width: 100%;
	height: 100%;
}
.custom-view-report {
	position: fixed;
	bottom: 20px;
	right: 20px;
	background-color: #e7f4fd;
	border: none;
	border-radius: 50%;
	padding: 15px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
	text-align: center;
	z-index: 1000; /* Ensure it appears above other content */
	transition: transform 0.2s, box-shadow 0.2s;
}

.custom-view-report a {
	color: #ffffff;
	text-decoration: none;
	display: flex;
	align-items: center;
	justify-content: center;
}

.custom-view-report a:hover {
	color: #ffffff;
}

.custom-view-report:hover {
	transform: scale(1.1);
	box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.custom-view-report svg {
	width: 24px;
	height: 24px;
	vertical-align: middle;
	stroke: #1b5c9d; /*Camera Blue*/
}