/* Style for the heart icon to always be red */
#likeButton {
    color: #ffffff; /* Always red heart */
}

#likeButton:hover {
    transform: scale(1.1);
}

body.dark-mode #likeButton {
    color: #1f2937; /* Keep it red in dark mode too */
}