/*
 * Unfold changelist cells use h-[45px] + overflow-hidden (still in 0.102),
 * which clips product/category thumbs. Keep images fully visible and let the
 * image column grow to fit them.
 */

#result_list td.field-get_image_tag {
    height: auto !important;
    min-height: 45px;
    overflow: visible !important;
    align-items: center;
}

#result_list td.field-get_image_tag img,
#result_list td.field-get_image_tag .admin-changelist-thumb {
    display: block;
    width: auto;
    height: auto;
    max-width: 56px;
    max-height: 56px;
    object-fit: contain;
    flex-shrink: 0;
    vertical-align: middle;
}
