/* Event-category presentation that is intentionally separate from calendar buckets.
   School meals stay in the School filter, but use their own lavender treatment so
   shared MPGS/MPHS meal entries do not blend into ordinary school events. */
.calendar-event-chip.category-school-meals {
  background: #cdb7ff !important;
  border-color: #b99cf4 !important;
  color: #2d1647 !important;
}

/* A month dot represents a bucket rather than one event. If a day has both a
   school meal and another school event, show both school shades in the same dot. */
.month-grid .calendar-event-chip.category-school-meals-mixed {
  background: linear-gradient(90deg, var(--color-school, #e6d9ff) 0 50%, #cdb7ff 50% 100%) !important;
  border-color: #b99cf4 !important;
}

body.theme-dark .calendar-event-chip.category-school-meals {
  background: #6d4a96 !important;
  border-color: #8a66b5 !important;
  color: #fff !important;
}

body.theme-dark .month-grid .calendar-event-chip.category-school-meals-mixed {
  background: linear-gradient(90deg, var(--color-school, #e6d9ff) 0 50%, #6d4a96 50% 100%) !important;
  border-color: #8a66b5 !important;
}
