/* Fix for button text capitalization */
.action-button span {
  text-transform: none; /* Reset any text transformation */
}

/* Ensure only the first letter is capitalized */
.action-button span::first-letter {
  text-transform: capitalize;
}
