﻿.item-card-image {
    height: 100px;
    max-height: 100px;
    width: 100%; /* Add this to ensure the div takes full width */
    display: flex; /* Add this to help with centering */
    justify-content: center; /* Centers horizontally */
    align-items: center; /* Centers vertically */
    padding: 0.25rem;
}

    .item-card-image img { /* Add this new rule for the actual image */
        max-width: 100%;
        max-height: 100px;
        object-fit: contain; /* This maintains aspect ratio */
    }