input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    appearance: none;
    margin: 0;
    /* Optional: You can adjust the spacing */
}
.item_title {
    text-wrap: wrap;
}
.total_price {
    font-size: 18px;
}
.cart_total_price {
    font-size: 18px;
    text-wrap: nowrap;
}
/* Styles for screens smaller than 1200px */
@media screen and (max-width: 1200px) {
    .item_title {
        text-wrap: nowrap;
    }
    #cart_item_tbody tr td {
        text-wrap: nowrap;
    }
    .total_price {
        font-size: 16px !important;
    }
    .cart_total_price {
        font-size: 16px !important;
        text-wrap: nowrap;
    }
}
