                        .button-group {
                            display: flex;
                            align-items: center;
                        }

                        .plus-button,
                        .minus-button {
                            background-color: #007bff;
                            border: none;
                            color: #fff;
                            font-size: 16px;
                            width: 30px;
                            height: 30px;
                            cursor: pointer;
                            transition: background-color 0.3s ease;
                            border-radius: 50%;
                            display: flex;
                            justify-content: center;
                            align-items: center;
                            margin-right: 5px;
                        }

                        .plus-button:hover,
                        .minus-button:hover {
                            background-color: #0056b3;
                        }
                        .form-group {
                            display: flex;
                            align-items: center;
                            margin-bottom: 10px;
                        }

                        .form-group label {
                            margin-left: 70px;
                            /* font-weight: italic; */
                            width: 200px; /* Adjust the width of the labels */
                        }
