/* v0153: day-view meeting label and uninterrupted full-hour grid lines. */

/*
 * The day spans 05:00-22:00 = 17 one-hour intervals.
 * Draw the same hourly line in every resource row so the grid reads as
 * continuous vertical columns instead of changing with alternating rows.
 */
.app-shell .schedule .schedule-row .day-track {
  background-color: #fff !important;
  background-image: repeating-linear-gradient(
    90deg,
    transparent 0,
    transparent calc(5.882352941% - 1px),
    #dce5dc calc(5.882352941% - 1px),
    #dce5dc 5.882352941%
  ) !important;
}

.app-shell .schedule .schedule-row:nth-child(odd) .day-track {
  background-color: #f1f6f1 !important;
}

/* Meetings used to be intentionally empty blocks in day view. */
.app-shell .schedule .timeline-item.event-meeting strong {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
