#cart-container-middle {
    display: flex;
    flex-direction: column;
    max-height: 25rem; /* Set the maximum height for the entire container */
    overflow-y: auto; /* Add vertical scrollbar if content exceeds max-height */
}

.cart-item {
    flex: 0 0 calc(50%); /* Adjust the width of each item as needed (50% for 2 columns) */
    max-height: 6rem; /* Set the maximum height for each item */
    overflow: hidden; /* Hide overflow content */
}
