/* Inline <style> block extracted verbatim from the live winndixie.com/weather-update page
   (captured 2026-08-02) — same per-page extract pattern as the other css/pages files. */
#storeClosures {
margin-bottom:30px;
}
.mainContentAlign p {
    margin-bottom: 20px;
}
.BrdCrmbTbl { margin-bottom: 30px; }

h1, h2 {
    font-family: "Asap";
}


button, input, select, textarea {   
    font-family: 'Asap';
}

/* Live opens this dropdown without the .open class, so app-wd.min.css's
   "#chooseLocationDropStores.open > .dropdown-menu { height:315px; overflow-y:scroll }"
   never applies there and the 2-item menu renders compact (measured 250x70 on live).
   Locally our bootstrap JS does add .open — neutralize the fixed height on this page,
   keeping 315px as a max so a storm-time long store list still scrolls like legacy. */
#chooseLocationDropStores.open > .dropdown-menu {
    height: auto;
    max-height: 315px;
    overflow-y: auto;
}
