#map {
	height: 600px;
	width: 100%;
	border-radius: 8px;
	box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 20px;
}

.controls {
	margin-bottom: 20px;
	padding: 15px;
	background: #f8f9fa;
	border-radius: 8px;
}

.controls button {
	margin: 5px;
	padding: 8px 16px;
	background: #007cba;
	color: white;
	border: none;
	border-radius: 4px;
	cursor: pointer;
}

.controls button:hover {
	background: #005a8b;
}

.controls button.active {
	background: #28a745;
}

.business-info {
	margin-bottom: 20px;
	padding: 15px;
	background: #ffffff;
	border-radius: 8px;
	box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.business-info h2 {
	margin: 0 0 10px 0;
	color: #333;
}

.business-info p {
	margin: 5px 0;
	color: #666;
}

.search-box {
	margin-bottom: 20px;
}

.search-box input {
	width: 300px;
	padding: 10px;
	border: 1px solid #ddd;
	border-radius: 4px;
}

.search-box button {
	padding: 10px 20px;
	background: #28a745;
	color: white;
	border: none;
	border-radius: 4px;
	cursor: pointer;
	margin-left: 10px;
}

.legend {
	position: absolute;
	bottom: 20px;
	left: 20px;
	background: white;
	padding: 10px;
	border-radius: 5px;
	box-shadow: 0 2px 5px rgba(0,0,0,0.3);
	z-index: 1000;
}

.legend-item {
	display: flex;
	align-items: center;
	margin: 5px 0;
}

.legend-color {
	width: 20px;
	height: 20px;
	border-radius: 50%;
	margin-right: 8px;
}

.stats {
	display: flex;
	gap: 20px;
	margin-bottom: 20px;
}

.stat-card {
	background: white;
	padding: 15px;
	border-radius: 8px;
	box-shadow: 0 2px 5px rgba(0,0,0,0.1);
	text-align: center;
	min-width: 150px;
}

.stat-number {
	font-size: 24px;
	font-weight: bold;
	color: #007cba;
}

.stat-label {
	font-size: 14px;
	color: #666;
}