/**
 * Fix for Django/Unfold calendar date picker jumping when navigating months.
 *
 * The calendar has varying heights (5 or 6 rows) depending on the month.
 * When centered, this causes the widget to jump when switching between months.
 * We set a fixed height on the entire calendarbox to prevent size changes.
 */

.calendarbox {
    /*
     * Fixed height for the entire calendar widget.
     * This includes: nav arrows, calendar table (caption + 7 rows), shortcuts, cancel button.
     * Adjust this value if needed based on actual rendered height with 6 weeks.
     */
    min-height: 430px;
}
