.lesslines {
  display: -webkit-box; 
  -webkit-line-clamp: 4; /* Limits to 4 lines */
  -webkit-box-orient: vertical; 
  overflow: hidden; 
  text-overflow: ellipsis; /* Adds "..." at the end if truncated */
  transition: all 0.3s ease; /* Smooth transition for the hover effect */
}

.lesslines:hover {
  -webkit-line-clamp: unset; /* Removes the line clamp on hover */
  overflow: visible; /* Allows content to expand */
  text-overflow: unset; /* No ellipsis on hover */
}
/*Flip Card*/

.zptab-name {
  margin-right: 30px; /* Adjust spacing as needed */
  margin-left: 30px
}
