/**
 * Resource Calendar CSS
 *
 * @package Kingdom_Connect
 */

.kc-calendar-filters {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 15px;
}

.kc-calendar-filters label {
	display: flex;
	align-items: center;
}

.kc-calendar-filters select {
	min-width: 200px;
}

.kc-event-tooltip {
	position: absolute;
	background: #2c3e50;
	color: #fff;
	padding: 12px 15px;
	border-radius: 4px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
	z-index: 10000;
	max-width: 300px;
	font-size: 13px;
	line-height: 1.6;
	pointer-events: none;
}

.kc-event-tooltip strong {
	color: #ecf0f1;
	display: block;
	margin-bottom: 5px;
	font-weight: 600;
}

.kc-calendar-tooltip {
	line-height: 1.8;
}

.kc-calendar-tooltip strong {
	display: inline;
	font-weight: 600;
	margin-right: 5px;
}

#kc-resource-calendar {
	min-height: 600px;
}

/* FullCalendar customizations */
.fc-event {
	cursor: pointer;
	transition: opacity 0.2s;
}

.fc-event:hover {
	opacity: 0.8;
}

.fc-toolbar-title {
	font-size: 1.5em;
	font-weight: 600;
}
