seank123, you can change the width of columns in css.
.quick-order th:first-child {
text-align: center;
width: 10%;
}
.quick-order th:nth-child(2) {
text-align: center;
width: 40%;
}
.quick-order th:nth-child(3) {
text-align: center;
width: 20%;
}
.quick-order th:nth-child(4) {
text-align: center;
width: 30%;
}
You can make it auto
, for example.