/**
 * SFR Location Map Styles
 */

.sfr-location-map-wrapper {
    margin: 20px 0;
}

.sfr-location-map {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.sfr-map-empty,
.sfr-map-no-locations {
    text-align: center;
    padding: 40px 20px;
    background-color: #f8f9fa;
    border-radius: 8px;
    color: #6c757d;
}

/* Custom popup styles */
.sfr-location-popup .leaflet-popup-content-wrapper {
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.sfr-location-popup-content {
    font-family: inherit;
    line-height: 1.5;
}

.sfr-popup-title {
    margin: 0 0 12px 0;
    font-size: 16px;
    font-weight: 600;
    color: #333;
    border-bottom: 2px solid #eee;
    padding-bottom: 8px;
}

.sfr-popup-image {
    margin: 12px 0;
    text-align: center;
}

.sfr-popup-image img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
    max-height: 150px;
    object-fit: cover;
}

.sfr-popup-address {
    margin: 12px 0;
    padding: 8px;
    background-color: #f8f9fa;
    border-radius: 4px;
    border-left: 3px solid #007bff;
    font-size: 14px;
}

.sfr-popup-address strong {
    color: #495057;
}

.sfr-popup-description {
    margin: 12px 0;
    font-size: 14px;
    color: #666;
    max-height: 120px;
    overflow-y: auto;
}

.sfr-popup-description p {
    margin: 0 0 8px 0;
}

.sfr-popup-description p:last-child {
    margin-bottom: 0;
}

/* Leaflet popup customizations */
.sfr-location-popup .leaflet-popup-content {
    margin: 16px 20px;
    min-width: 200px;
}

.sfr-location-popup .leaflet-popup-tip-container {
    margin-top: -1px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .sfr-location-map {
        height: 300px !important;
    }
    
    .sfr-popup-title {
        font-size: 15px;
    }
    
    .sfr-location-popup .leaflet-popup-content {
        margin: 12px 16px;
        min-width: 180px;
    }
}