.pqy-boxes-product {
    width: 100%;
}
.wc-block-add-to-cart-form .quantity .qty {
    text-align: justify !important;
    width: 4.631em;
}
.pqy-custom-quantity-buttons,
.pqy-step-quantity-buttons,
.pqy-default-quantity-buttons,
.pqy-custom-quantity-buttons-variation,
.pqy-step-quantity-buttons-variation,
.pqy-default-quantity-buttons-variation {
    border: 1px solid;
    max-width: 290px;
    padding: 15px;
    margin-bottom: 10px;
    border-radius: 5px;
    height: 125px; /* Adjust the height as needed to fit 2 rows */
    overflow-y: auto; /* Enable vertical scrolling */
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.pqy-quantity-button {
    background-color: #f5f5f5;
    border: 1px solid #ddd;
    padding: 10px 15px;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s, border-color 0.3s;
    margin: 5px;
    flex: 0 0 25%; /* Adjust the flex-basis as needed to control button width */
}

.pqy-quantity-button:hover {
    background-color: #e5e5e5;
    border-color: #ccc;
}

.pqy-quantity-button.selected {
    background-color: #d5d5d5;
    border-color: #bbb;
}

.pqy-quantity-input {
    display: none;
}