/* 🎨 Style for the event category link */
.event-category-link {
    color: #fff; /* Default link color */
    font-size: 13px; /* Adjust font size */
    font-weight: 400; /* Make it stand out */
    text-decoration: none; /* Remove underline */
    padding: 7px 25px; /* Add some space around the text */
	margin-right: 5px;
    border-radius: 20px; /* Rounded corners */
    background-color: #C61A5B; /* Light background */
    display: inline-block; /* Make it behave like a button */
    transition: all 0.3s ease-in-out; /* Smooth hover effect */
}

/* 🚀 Hover effect */
.event-category-link:hover {
    background-color: #E41F69; /* Change background on hover */
    color: #fff; /* Change text color on hover */
    text-decoration: none; /* Keep underline off */
}
