/**
 * TEH TEC Month Weekdays - Month View grid override.
 *
 * Force 5-column layout for month header and week rows in case
 * legacy/site CSS still applies 7-column grid templates.
 */

.tribe-events-view--month table.tribe-events-calendar-month .tribe-events-calendar-month__header tr {
	display: grid !important;
	grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
}

.tribe-events-view--month table.tribe-events-calendar-month .tribe-events-calendar-month__week {
	display: grid !important;
	grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
}

.tribe-events-view--month table.tribe-events-calendar-month .tribe-events-calendar-month__header-column,
.tribe-events-view--month table.tribe-events-calendar-month .tribe-events-calendar-month__day {
	width: auto !important;
	max-width: none !important;
	min-width: 0;
}
