/*
 * Gravity Forms datepicker popup must stack above the wp-map-block map:
 * Leaflet panes/controls use z-index 400-1000, while jQuery UI sets an
 * inline z-index on the popup of (input z-index + 1), i.e. ~1.
 * !important is required to beat that inline style.
 */
body #ui-datepicker-div,
body .ui-datepicker.gform-theme-datepicker {
	z-index: 10010 !important;
}

/* GF 3.x replaces jQuery UI with its own popup (.gform-datepicker-calendar,
 * z-index 99 in GF's CSS) — same stacking problem against the map. */
body .gform-datepicker-calendar {
	z-index: 10010 !important;
}
