/* =========================================================
   Fix: Create Post sheet had no show/hide rule outside the
   mobile (max-width:760px) media query, so on desktop it was
   always visible and Close/Cancel did nothing. This adds a
   global toggle that works at every screen width.
   ========================================================= */
.mobile-create-sheet {
    display: none !important;
}
#mobile-create-sheet-toggle:checked ~ .mobile-create-sheet {
    display: block !important;
}
