/* ==========================================================================
   Togo Child — Departure Calendar Frontend (departure-calendar.css)

   Now uses the EXACT plugin calendar-wrapper structure (same as Layout-01).
   Most CSS is inherited from the plugin's own stylesheet automatically.
   We only need to handle:
    1. Show/hide via is-active (departure field is a toggle, not always-open)
    2. Hide calendar-actions (Apply button not needed — selection is immediate)
   ========================================================================== */

/* ── Show/hide calendar via form-field is-active toggle ─────────────────── */
/* Plugin CSS likely already does this for Layout-01. Restate here to ensure
   it works for .togo-departure-field regardless of plugin specificity.     */
.togo-departure-field .calendar-wrapper {
	display: none;
}

.togo-departure-field.is-active .calendar-wrapper {
	display: block;
}

/* ── Hide Apply/Close actions — departure selection is immediate ─────────── */
.togo-departure-field .calendar-actions {
	display: none !important;
}
