/* Editable Price Input Field */
.price-input-wrapper {
    margin-bottom: 15px;
}

.price-input-wrapper label {
    font-weight: bold;
    margin-bottom: 5px;
    display: block;
}

#mabrook_price {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    transition: all 0.3s ease;
}

#mabrook_price:focus {
    border-color: #0071a1;
    box-shadow: 0 0 5px rgba(0, 113, 161, 0.5);
    outline: none;
}

/* Error Message for Price Input */
.price-error-message {
    font-size: 14px;
    margin-top: 5px;
    display: block;
    color: red;
    font-style: italic;
}

/* Buttons (General Styles) */
.woocommerce .button {
    display: inline-block;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 5p
