/* Leaflet CSS for OpenStreetMap */
/* Include full Leaflet CSS from CDN in the blade files */

#google_map_area {
    height: 350px;
    width: 100%;
    border: 1px solid #ddd;
    border-radius: 4px;
}

#map {
    width: 100%;
    height: 400px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.mapControls {
    margin-top: 10px;
    border: 1px solid transparent;
    border-radius: 2px 0 0 2px;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    height: 32px;
    outline: none;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

#searchMapInput {
    background-color: #fff;
    font-size: 15px;
    font-weight: 300;
    margin-left: 12px;
    padding: 0 11px 0 13px;
    text-overflow: ellipsis;
    width: 50%;
    border: 1px solid #ccc;
    border-radius: 4px;
}

#searchMapInput:focus {
    border-color: #4d90fe;
    outline: none;
}

/* RTL support for search input */
[dir="rtl"] #searchMapInput {
    margin-left: 0;
    margin-right: 12px;
    text-align: right;
}

/* Leaflet popup customization */
.leaflet-popup-content-wrapper {
    border-radius: 6px;
    font-family: 'Vazirmatn', Roboto, sans-serif;
}

.leaflet-popup-content {
    margin: 13px 19px;
    line-height: 1.4;
}

.leaflet-container {
    font-family: 'Vazirmatn', Roboto, sans-serif;
}

/* Custom marker popup */
.custom-popup {
    text-align: center;
}

.custom-popup .popup-title {
    font-weight: bold;
    margin-bottom: 5px;
}

.custom-popup .popup-address {
    font-size: 14px;
    color: #666;
}
