/* Base styles */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/* Property card hover effect */
.property-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.property-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}
/* Enhanced map container styling */
#map-container {
    height: 100%;
    width: 100%;
    z-index: 0;
}

/* Leaflet marker cluster styles */
.marker-cluster-small {
    background-color: rgba(79, 70, 229, 0.2);
}
.marker-cluster-small div {
    background-color: rgba(79, 70, 229, 0.6);
}

.marker-cluster-medium {
    background-color: rgba(79, 70, 229, 0.3);
}
.marker-cluster-medium div {
    background-color: rgba(79, 70, 229, 0.7);
}

.marker-cluster-large {
    background-color: rgba(79, 70, 229, 0.4);
}
.marker-cluster-large div {
    background-color: rgba(79, 70, 229, 0.8);
}

/* Marker cluster text */
.marker-cluster span {
    color: white;
    font-weight: bold;
}

/* Leaflet popup styles */
.leaflet-popup-content {
    margin: 13px 19px;
    min-width: 200px;
}

.leaflet-popup-content-wrapper {
    border-radius: 8px;
}

/* Zoom controls */
.leaflet-control-zoom {
    margin-top: 80px !important;
    margin-right: 10px !important;
    border: none !important;
}

.leaflet-control-zoom a {
    background: white !important;
    border-radius: 4px !important;
    margin-bottom: 4px !important;
    box-shadow: 0 1px 5px rgba(0,0,0,0.1) !important;
}
/* Leaflet marker adjustments */
.leaflet-marker-icon {
    transition: transform 0.2s ease;
}

.leaflet-marker-icon:hover {
    transform: scale(1.2);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    #map-container {
        height: 60vh;
    }
}