﻿#map-container {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 600px;
}

#map {
    min-height: 600px;
    width: 100%;
    border: 1px solid #e5e7eb;
    border-radius: 10px
}

/* لایه‌ی فید روی نقشه */
#map-fade {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: #f3f0e6; /* هم‌رنگ پس‌زمینه‌ی نقشه‌ات */
    opacity: 0; /* در حالت عادی نامرئی */
    transition: opacity 0.25s ease-out; /* فید نرم */
    height: 600px;
}

#coords {
    margin-top: 15px;
}

.leaflet-tile {
    width: 257px !important;
    height: 257px !important;
}


#search-container {
    position: absolute;
    top: 35px;
    right: 15px;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    width: 300px;
    direction: rtl;
    font-family: IRANSans;
}

#search-input {
    width: 100%;
    padding: 6px 8px;
    border-radius: 6px;
    border: 1px solid #ddd;
    outline: none;
}

#search-results {
    max-height: 220px;
    overflow-y: auto;
}

.search-item {
    padding: 6px 8px;
    cursor: pointer;
    border-radius: 4px;
    font-size: 13px;
}

    .search-item:hover {
        background: #f3f0e6;
    }

.search-item-title {
    font-weight: bold;
}

.search-item-sub {
    font-size: 11px;
    color: #666;
}
