/* =============================================================================
   calendarjs_custom.css — PUBLIC override for the reusable SimpleCalendarJs lib.

   Public-side counterpart of the admin override: @imports the untouched vendor
   base and re-declares the three grids to honour the --uc-cols variable the
   enhanced base JS sets from the `hiddenDays` option (falls back to 7 when unset).
   Public calendar theming lives in /assets/app/css/app.css — this file only carries
   the responsive-columns rule that used to be edited into the vendor source.
   ========================================================================== */
@import url('/assets/libs/calendarjs/css/simple-calendar-js.css');

.uc-calendar .uc-month-header,
.uc-calendar .uc-week-cells,
.uc-calendar .uc-week-day-headers {
    grid-template-columns: repeat(var(--uc-cols, 7), 1fr);
}
