/**
 * Bell-Con Locations - Leaflet Map Styles
 */

/* Map Container */
.bc-locations-container {
	width: 100%;
	height: 600px;
	border: 1px solid #ddd;
	border-radius: 4px;
	overflow: hidden;
	margin: 20px 0;
}

/* Leaflet overrides */
.bc-locations-container .leaflet-container {
	background: #f0f0f0;
	font-family: inherit;
}

/* Custom Markers */
.bc-locations-marker {
	display: flex;
	align-items: center;
	justify-content: center;
}

.bc-locations-marker-inner {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: 20px;
	border: 2px solid white;
	box-shadow: 0 2px 8px rgba(0,0,0,0.3);
	cursor: pointer;
	transition: transform 0.2s ease;
}

.bc-locations-marker-inner:hover {
	transform: scale(1.2);
}

/* Tooltips */
.bc-locations-tooltip {
	background-color: #2E5090 !important;
	border: none !important;
	border-radius: 4px;
	padding: 6px 10px;
	font-size: 12px;
	box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

.bc-locations-tooltip.leaflet-tooltip-bottom::before {
	border-bottom-color: #2E5090;
}

/* Legend */
.bc-locations-legend {
	background: white;
	padding: 15px;
	border-radius: 5px;
	box-shadow: 0 0 15px rgba(0,0,0,0.2);
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	z-index: 1000;
}

.bc-locations-legend h4 {
	margin: 0 0 10px 0;
	font-size: 14px;
	font-weight: bold;
	color: #333;
}

.legend-item {
	display: flex;
	align-items: center;
	margin-bottom: 8px;
	font-size: 12px;
	color: #555;
}

.legend-item:last-child {
	margin-bottom: 0;
}

.legend-color {
	width: 16px;
	height: 16px;
	border-radius: 2px;
	margin-right: 10px;
	display: inline-block;
	border: 1px solid rgba(0,0,0,0.1);
}

.legend-label {
	font-size: 12px;
}

/* Popups */
.leaflet-popup-content-wrapper {
	border-radius: 4px;
	box-shadow: 0 2px 8px rgba(0,0,0,0.25);
}

.leaflet-popup-content {
	margin: 0;
	padding: 10px;
}

.leaflet-popup-content strong {
	color: #2E5090;
	display: block;
	margin-bottom: 5px;
}

.leaflet-popup-content small {
	color: #999;
}

/* Responsive */
@media (max-width: 768px) {
	.bc-locations-container {
		height: 400px;
	}

	.bc-locations-legend {
		padding: 10px;
		font-size: 11px;
	}

	.legend-item {
		font-size: 11px;
		margin-bottom: 6px;
	}

	.legend-color {
		width: 14px;
		height: 14px;
	}

	.bc-locations-marker-inner {
		width: 32px;
		height: 32px;
		font-size: 16px;
	}
}

@media (max-width: 480px) {
	.bc-locations-container {
		height: 300px;
	}

	.bc-locations-legend {
		padding: 8px;
		font-size: 10px;
	}

	.bc-locations-marker-inner {
		width: 28px;
		height: 28px;
		font-size: 14px;
		border-width: 1px;
	}
}
