/* bootstrap-datepicker 1.6.1 toggles its view panels (.datepicker-days, .datepicker-months, etc.)
   via jQuery .hide()/.show(), expecting .show() to set an inline "display" override on top of
   the base ".datepicker > div { display: none }" rule. Under jQuery 4.0 that override is no
   longer reliably applied, so the intended-visible panel stays hidden and the popup collapses
   to just its padding. The hidden panels still get an explicit inline "display: none" from
   .hide(), so the panel with no such override is the one that should be visible. */
.datepicker > div:not([style*="display: none"]):not([style*="display:none"]) {
    display: block !important;
}
