/**
 * @file
 * Style overrides for the dgco_calendar_days FullCalendar view.
 *
 * The theme's global tr rule (css/components/table.css) bleeds into
 * FullCalendar's own <table>/<tr> markup, so it's overridden here rather
 * than in table.css, which is used by every other table on the site.
 */
.fc-daygrid-body tr {
  background: rgb(255 255 255 / 55%);
}

/*
 * FullCalendar injects its core CSS at runtime via JS, where
 * .fc-theme-standard td/th borders use var(--fc-border-color).
 */
.fc {
  --fc-border-color: #abacad;
}

/* Lighten adjacent-month day numbers less than FullCalendar's default. */
.fc .fc-day-other .fc-daygrid-day-top {
  opacity: 0.5;
}
