/* Add this CSS to fix month/day field widths in the review edit popup */

/* If these fields exist in your rvdk-review-update-popup.php or are added via JavaScript */
#edit-review-month,
select[name="review_month"] {
    width: 60px !important;
}

#edit-review-day,
input[name="review_day"] {
    width: 54px !important;
}

/* Alternative: Add inline styles directly to the HTML elements */
/*
<select name="review_month" id="edit-review-month" style="width:60px;">
<input type="number" name="review_day" id="edit-review-day" min="1" max="31" placeholder="18" style="width:54px;">
*/
