.qty_item_custom {
    min-width: 50px; /* Increased to accommodate decimals */
    display: inline-block;
    text-align: center;
    border: 1px solid #ddd;
    border-radius: 2px;
    padding: 2px 5px;
    font-size: 14px;
    appearance: textfield;
    -webkit-appearance: textfield;
    -moz-appearance: textfield;
}

.qty_item_custom input {
    width: 100%;
    border: none;
    background: transparent;
    text-align: center;
    appearance: textfield;
    -webkit-appearance: textfield;
    -moz-appearance: textfield;
}

.qty_item_custom input::-webkit-outer-spin-button,
.qty_item_custom input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Style for decimal point */
.qty_item_custom.has-decimal:after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    width: 2px;
    height: 2px;
    background: #333;
    border-radius: 50%;
    margin-left: -1px;
}

/* Increase clickable area for quantity controls */
.qty-add,
.qty-subtract {
    padding: 5px 8px;
    cursor: pointer;
}

/* Make sure the quantity controls are well-spaced */
.qty {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 120px;
    margin: 0 auto;
}
