.price-marker {
    background-color: black;
    color: white;
    padding: 6px 10px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: bold;
    text-align: center;
    white-space: nowrap;
}
.marker-hovered {
    background-color: #ff9800; /* Change this to the desired hover color */
    color: white; /* Optional: change the text color */
}
.listing-item:hover {
	background-color:#ff9800;
}
#listings-container {
	height:100%;
	overflow:scroll-y;
}
.listing-image {
	max-width:250px;
}
.listing-item.highlighted {
    box-shadow: 0 0 0 2px #4285F4;
    transform: scale(1.02);
    transition: all 0.2s ease;
	background-color:#ff9800;
}

/* Highlight for map markers */
.marker-highlighted {
    transform: scale(1.3);
    z-index: 1000;
	background-color:#ff9800;
    transition: all 0.2s ease;
}
.price-marker.marker-highlighted {
    transform: scale(1.3);
    z-index: 1000;
    box-shadow: 0 0 10px rgba(0,0,0,0.5);
    transition: all 0.2s ease;
}

/* Listing highlight styles */
.listing-item.highlighted {
    border: 2px solid #4285F4;
    box-shadow: 0 0 10px rgba(66, 133, 244, 0.5);
    transition: all 0.2s ease;
}
.price-marker {
    z-index: 100 !important;
    pointer-events: auto !important;
}
#map {
  position: sticky !important;
  top: 100px;     /* or whatever offset you want */
  right: 20px;    /* or left, depending on layout */
  height: 500px;
  width: 100%;   /* or any fixed width */
  z-index: 999;   /* make sure it sits above other elements */
}
.listing-item {
    cursor:pointer;
}
.cluster-marker {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #4285F4;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-weight: bold;
    font-size: 14px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.3);
    cursor: pointer;
}

.cluster-marker:hover {
    background-color: #3367D6;
    transform: scale(1.1);
}
.cluster-highlighted {
    background-color: #FF5A5F !important;
    transform: scale(1.1);
    z-index: 1000 !important;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(255, 90, 95, 0.7) !important;
}

.cluster-single-highlighted {
    background-color: #FF3B3F !important;
    transform: scale(1.3) !important;
    box-shadow: 0 0 20px rgba(255, 59, 63, 0.9) !important;
}