diff --git a/src/components/Map/MapView.jsx b/src/components/Map/MapView.jsx
index 1f6c4db..ccadd0b 100644
--- a/src/components/Map/MapView.jsx
+++ b/src/components/Map/MapView.jsx
@@ -2197,14 +2197,6 @@ export default function MapView({
onPlaceTourWire={handleOpenCreate}
/>
-
)}
+
+ {onMySpot && (
+
+ )}
{showList && (
diff --git a/src/styles/smartSearchBar.css b/src/styles/smartSearchBar.css
index a2d6243..d26e01b 100644
--- a/src/styles/smartSearchBar.css
+++ b/src/styles/smartSearchBar.css
@@ -173,7 +173,29 @@ body[data-theme="light"] {
/* My Position button inside search bar */
.sw-search__mySpotBtn {
+ border: 0;
+ outline: 0;
+ cursor: pointer;
+ background: var(--sw-chip-bg, rgba(255,255,255,0.08));
+ color: var(--sw-text, rgba(255,255,255,0.92));
+ padding: 6px 10px;
+ border-radius: 8px;
font-size: 16px;
+ display: inline-flex;
+ align-items: center;
+ justify-content: center;
+ transition: all 0.15s ease;
+ flex-shrink: 0;
+ margin-left: 4px;
+}
+
+.sw-search__mySpotBtn:hover {
+ background: var(--sw-hover, rgba(255,255,255,0.15));
+ color: #38bdf8;
+}
+
+.sw-search__mySpotBtn:active {
+ transform: scale(0.95);
}
.sw-search__iconBtn.is-active {