.mud-button {
	border-radius: 4px;
	box-shadow: none;
	background-color: #44459a !important;
	color: white !important;
}

	.mud-button:hover {
		box-shadow: none;
		background-color: #312942 !important;
	}

	.mud-button:focus, .mud-button:active {
		box-shadow: none;
		background-color: #312942 !important;
	}

	.mud-button:disabled {
		box-shadow: none;
		background-color: #a1a1cc !important;
	}

.mud-dialog .mud-dialog-actions {
	padding: 8px 24px;
}

.base {
	transition: 1s linear all;
}

.highlight {
	background-color: yellow;
	transition: none;
}

.highlight-updated {
	background-color: #fff3cd; /* A light yellow for highlighting */
	transition: background-color 0.5s ease-in-out; /* Optional: adds a smooth transition */
}