.crm-button {
background-color: #7d225d; /* Button background color */
color: white; /* Button text color */
border: none; /* Remove default border */
padding: 10px 20px; /* Adjust padding to fit your button */
font-size: 16px; /* Set a font size */
font-weight: bold; /* Optional: make the text bold */
cursor: pointer; /* Show pointer cursor when hovering */
border-radius: 5px; /* Optional: rounded corners */
transition: background-color 0.3s ease; /* Smooth transition for hover effect */
}
.crm-button:hover {
background-color: #b53d60; /* Hover background color */
}