/* Optional custom styles for the image */
#has_dog+label,
#has_cat+label {
    cursor: pointer;
    /* Makes the label clickable */
    display: inline-block;
    /* Make label inline */
    padding: 10px;
    filter: grayscale(1);
}

#has_dog:checked+label,
#has_cat:checked+label {
    border-color: rgba(var(--bs-purina-rgb), 1) !important;
    filter: none;
}