.swvm-map {
	position: relative;
	overflow: hidden;
	border-radius: 4px;
}

/* Logo — exact match to the SpatioWorld Maps app: bottom:45px left:10px 120x60 */
.swvm-logo {
	position: absolute;
	bottom: 45px;
	left: 10px;
	width: 120px;
	height: 60px;
	object-fit: contain;
	object-position: left center;
	z-index: 1000;
	pointer-events: none;
}

@media (max-width: 768px) {
	.swvm-logo { bottom: 50px; left: 8px; width: 90px; height: 45px; }
}
@media (max-width: 576px) {
	.swvm-logo { bottom: 45px; width: 80px; height: 40px; }
}

/* Selected-place / dropped pin — real marker.png graphic, anchored bottom
   (the point of the pin) same as the SpatioWorld Maps app. */
.swvm-pin-marker {
	width: 40px;
	height: 40px;
	pointer-events: none;
}

/* "My location" — small blue dot with white ring, Google Maps convention */
.swvm-dot-marker {
	width: 16px;
	height: 16px;
	border-radius: 50%;
	background: #1a73e8;
	border: 3px solid #fff;
	box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.25), 0 1px 4px rgba(0, 0, 0, 0.4);
}

/* Search box */
.swvm-search-box {
	position: absolute;
	top: 10px;
	left: 10px;
	width: 280px;
	max-width: calc(100% - 70px);
	z-index: 6;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.swvm-search-input {
	width: 100%;
	box-sizing: border-box;
	padding: 9px 12px;
	font-size: 14px;
	border: none;
	border-radius: 4px;
	background: #fff;
	box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
	outline: none;
}

.swvm-search-dropdown {
	margin-top: 4px;
	background: #fff;
	border-radius: 4px;
	box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
	max-height: 260px;
	overflow-y: auto;
}

.swvm-search-item {
	padding: 9px 12px;
	font-size: 13px;
	color: #333;
	cursor: pointer;
	border-bottom: 1px solid #eee;
}

.swvm-search-item:last-child { border-bottom: none; }
.swvm-search-item:hover { background: #f4f4f4; }

/* "My location" button */
.swvm-locate-btn {
	position: absolute;
	top: 92px;
	right: 10px;
	width: 34px;
	height: 34px;
	padding: 0;
	border: none;
	border-radius: 4px;
	background: #fff;
	color: #333;
	box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 6;
}

.swvm-locate-btn:hover { background: #f4f4f4; }
.swvm-locate-btn:disabled { opacity: 0.5; cursor: default; }
