/* Normal table styles */
.ct-table {
	width: 100%;
	border-spacing: 0;
	border: 1px solid var(--bs-border-color);
}

.ct-table th,
.ct-table td {
	/*border: 1px solid var(--bs-border-color); */
	padding: 8px;
	text-align: left;
}

/* Stacked table for small screens */
@media (max-width: 767px) {

	.ct-table thead {
		display: none;
	}

	.ct-table tbody,
	.ct-table tr,
	.ct-table td {
		display: block;
		width: 100%;
	}

	.ct-table tr {
		margin-bottom: 15px;
		/*border: solid 1px grey;*/
	}
	.ct-table td {
		text-align: right; /* Adjust alignment for stacked layout */
		/* Add more styles as needed */
	}

	.ct-table td::before {
		content: attr(data-label);
		float: left;
		font-weight: bold;
	}

	.ct-table tbody td[data-label]:before {
		display: block;
		font-weight: bold;
	}
}


.pointer {
	cursor: pointer;
}
