/* Interactive Locations Map — front-end styles */

.ilm-map-wrap {
	position: relative;
	margin: 0 0 1.5em;
	width: 100%;
}
.ilm-map {
	width: 100%;
	min-height: 240px;
	background: #e9edf0;
	border-radius: 8px;
	overflow: hidden;
}

/* Toolbar / filter */
.ilm-map-toolbar {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	align-items: center;
	margin-bottom: 12px;
}
.ilm-filter-select {
	min-width: 220px;
	max-width: 100%;
	padding: 8px 12px;
	border: 1px solid #cfd4d9;
	border-radius: 6px;
	background: #fff;
	font-size: 15px;
	line-height: 1.3;
}

/* Messages */
.ilm-map-msg {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
	min-height: 240px;
	padding: 24px;
	text-align: center;
	color: #5b6672;
}
.ilm-map-msg--error {
	color: #b32d2e;
}
.ilm-map-notice {
	padding: 14px 16px;
	background: #fcf3d6;
	border: 1px solid #e6c200;
	border-radius: 6px;
	color: #5b4b00;
	font-size: 14px;
}

/* Info window */
.ilm-iw {
	font-size: 14px;
	line-height: 1.45;
	max-width: 260px;
	color: #1d2530;
}
.ilm-iw-title {
	font-weight: 700;
	font-size: 15px;
	margin-bottom: 4px;
}
.ilm-iw-address {
	color: #4a5563;
	margin-bottom: 6px;
}
.ilm-iw-line {
	white-space: normal;
}
.ilm-iw-directions {
	display: inline-block;
	margin-top: 2px;
	font-weight: 600;
	text-decoration: none;
}
.ilm-iw-directions:hover {
	text-decoration: underline;
}

/* Google InfoWindow tends to add default typography — keep ours tidy. */
.gm-style .ilm-iw * {
	box-sizing: border-box;
}
