/* Custom Scrollbars for smooth booking interface navigation */
#properties-list::-webkit-scrollbar {
    width: 6px;
}
#properties-list::-webkit-scrollbar-track {
    background: #f1f1f1;
}
#properties-list::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 3px;
}

/* Custom Booking Price Markers over the Map Canvas */
.map-price-marker {
    background-color: #003580 !important;
    color: #ffffff !important;
    font-weight: 700 !important;
    font-size: 12px !important;
    padding: 4px 8px !important;
    border-radius: 4px !important;
    border: 1px solid #ffffff !important;
    box-shadow: 0 2px 6px rgba(0,0,0,0.3);
    white-space: nowrap;
    text-align: center;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

/* Hover effects when interacting directly with map prices */
.map-price-marker:hover {
    background-color: #ffb700 !important;
    color: #003580 !important;
    transform: scale(1.1);
    cursor: pointer;
}

/* Overriding default Leaflet popup sizing wrapper to mimic Booking.com */
.leaflet-popup-content-wrapper {
    padding: 0 !important;
    overflow: hidden !important;
    border-radius: 8px !important;
}
.leaflet-popup-content {
    margin: 0 !important;
    width: 240px !important;
}