.td-cal-page {
	padding: 40px 20px;
}
.td-cal-page-title {
	margin-bottom: 24px;
}
.td-cal-weekend-toggle {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 14px;
	margin-bottom: 16px;
	cursor: pointer;
}

#td-calendar-root {
	font-family: "Figtree", sans-serif;
}
#td-calendar-root .fc-button-primary {
	background-color: #004C97;
	border-color: #004C97;
}
#td-calendar-root .fc-button-primary:hover {
	background-color: #003c78;
	border-color: #003c78;
}
#td-calendar-root .fc-event {
	background-color: #326fab;
	border-color: #326fab;
	color: #fff;
	cursor: pointer;
}
#td-calendar-root .fc-event,
#td-calendar-root .fc-event:hover,
#td-calendar-root .fc-event:visited,
#td-calendar-root .fc-event:focus,
#td-calendar-root .fc-event-title,
#td-calendar-root .fc-event-time {
	color: #fff !important;
	text-decoration: none;
}

/* Force every event pill to reserve two lines of title height, whether
   the title needs one line or two -- keeps short and long titles the
   same visual size instead of long ones getting clipped to one line. */
#td-calendar-root .fc-daygrid-event {
	white-space: normal;
	align-items: flex-start;
}
#td-calendar-root .fc-daygrid-event .fc-event-title {
	white-space: normal !important;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
	line-height: 1.3em;
	min-height: 2.6em;
}
#td-calendar-root .fc-daygrid-event .fc-event-time {
	white-space: nowrap;
}
#td-calendar-root .fc-daygrid-day.fc-day-today {
	background-color: #f0f4f9;
}

.td-cal-detail {
	position: fixed;
	top: 0;
	right: 0;
	width: 340px;
	max-width: 90vw;
	height: 100%;
	background: #fff;
	box-shadow: -2px 0 12px rgba(0, 0, 0, 0.15);
	padding: 24px;
	overflow-y: auto;
	z-index: 1000;
}
.td-cal-detail-close {
	position: absolute;
	top: 16px;
	right: 16px;
	background: none;
	border: none;
	font-size: 22px;
	cursor: pointer;
}
.td-cal-detail dl {
	margin-top: 16px;
}
.td-cal-detail dt {
	font-size: 12px;
	text-transform: uppercase;
	color: #666;
	margin-top: 10px;
}
.td-cal-detail dd {
	margin: 2px 0 0 0;
	font-size: 15px;
}
.td-cal-detail-locked {
	margin-top: 20px;
	padding: 10px 12px;
	background: #f1f1f1;
	border-radius: 4px;
	font-size: 13px;
	color: #555;
}
