/* Inherit from the existing .data-table class */
.data-table {
	width: 100%;
	max-width: 100%;
	margin-bottom: 2rem;
	background-color: #fff;
	border-spacing: 0;
	border: 0;
}
.data-table > thead > tr,
.data-table > tbody > tr,
.data-table > tfoot > tr {
	-webkit-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
.data-table > thead > tr > th,
.data-table > thead > tr > td,
.data-table > tbody > tr > th,
.data-table > tbody > tr > td,
.data-table > tfoot > tr > th,
.data-table > tfoot > tr > td {
	text-align: left;
	padding: 1rem;
	vertical-align: top;
	border: 0;
	-webkit-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
	border-bottom: 1px solid #f0f0f0;
}
.data-table > thead > tr > th {
	background: #fafafa;
	font-weight: 400;
	color: rgba(0, 0, 0, 0.88);
	font-weight: 600;
	vertical-align: bottom;
	border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}
.data-table > caption + thead > tr:first-child > th,
.data-table > caption + thead > tr:first-child > td,
.data-table > colgroup + thead > tr:first-child > th,
.data-table > colgroup + thead > tr:first-child > td,
.data-table > thead:first-child > tr:first-child > th,
.data-table > thead:first-child > tr:first-child > td {
	border-top: 0;
}
.data-table > tbody + tbody {
	border-top: 1px solid rgba(0, 0, 0, 0.12);
}
.data-table .table {
	background-color: #fff;
}
.data-table .no-border {
	border: 0;
}

.delete-record {
	background-color: #ff4c4f;
	color: white;
	border: none;
	padding: 10px 17px;
	border-radius: 5px;
	cursor: pointer;
	transition: background-color 0.3s ease;
	/* Add a smooth transition effect */
}
.delete-record:hover {
	opacity: 0.7;
}
