/* Goysepete OpenStreetMap Styles */
#osm_map_area, #google_map_area, #map {
    height: 320px;
    width: 100%;
    border-radius: 14px;
    border: 1.5px solid #e2e8f0;
    z-index: 1;
    overflow: hidden;
    position: relative;
}

.kktc_quick_locations {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin-bottom: 12px;
}

.btn_kktc_city {
    background: #f8fafc;
    border: 1px solid #cbd5e1;
    color: #334155;
    border-radius: 20px;
    padding: 5px 12px;
    font-size: 12.5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.btn_kktc_city:hover, .btn_kktc_city.active {
    background: #E94222;
    border-color: #E94222;
    color: #ffffff;
}

#searchResultsList {
    display: none;
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    right: 0;
    background: #ffffff;
    border: 1px solid #cbd5e1;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    z-index: 99999;
    max-height: 220px;
    overflow-y: auto;
}

.osm_search_item {
    padding: 10px 14px;
    font-size: 13.5px;
    color: #1e293b;
    cursor: pointer;
    border-bottom: 1px solid #f1f5f9;
    transition: background-color 0.15s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.osm_search_item:last-child {
    border-bottom: none;
}

.osm_search_item:hover {
    background-color: #fef2f2;
    color: #E94222;
}

.osm_search_item svg {
    flex-shrink: 0;
    color: #E94222;
}

/* Custom Marker Styling */
.goysepete-pin {
    display: flex;
    align-items: center;
    justify-content: center;
}

.goysepete-pin svg {
    filter: drop-shadow(0 4px 8px rgba(233, 66, 34, 0.45));
}
