/* v0125: isolate the large resource calendar from the small coordination calendar. */
.app-shell .month-board .month-weekdays,
.app-shell .month-board .month-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(135px, 1fr));
  min-width: 945px;
}

/* The visible timeline is 05:00–22:00: exactly 17 one-hour columns. */
.app-shell .schedule .time-axis,
.app-shell .personal-axis > div {
  grid-template-columns: repeat(17, 1fr);
}

.app-shell .schedule .day-track,
.app-shell .personal-track {
  background: repeating-linear-gradient(90deg,#fff 0,#fff calc(5.8823529412% - 1px),#e6ebe6 calc(5.8823529412% - 1px),#e6ebe6 5.8823529412%);
}

.app-shell .personal-day.today .personal-track {
  background: repeating-linear-gradient(90deg,#f7fbdc 0,#f7fbdc calc(5.8823529412% - 1px),#dfe7ae calc(5.8823529412% - 1px),#dfe7ae 5.8823529412%);
}
