/* Genel Sayfa Ayarları */
body, html {
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
    background-color: #f0f2f5;
}

header {
    text-align: center;
    padding: 20px;
    background: #1a1a1a;
    color: white;
}

/* Arama Kutusu Tasarımı */
.search-wrapper {
    position: relative;
    max-width: 400px;
    margin: 15px auto 0 auto;
}

#map-search {
    width: 100%;
    padding: 12px 20px;
    border-radius: 25px;
    border: none;
    font-size: 16px;
    outline: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.search-results {
    position: absolute;
    top: 110%;
    left: 0;
    right: 0;
    background: white;
    color: #333;
    border-radius: 10px;
    z-index: 1000;
    max-height: 250px;
    overflow-y: auto;
    display: none;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.search-item {
    padding: 12px 20px;
    cursor: pointer;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.search-item:hover {
    background-color: #f8f9fa;
    color: #2ecc71;
}

/* Harita Çerçevesi */
#map-container {
    width: 95%;
    max-width: 1200px;
    height: 70vh;
    margin: 20px auto;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
    border: 3px solid #fff;
}

#map { width: 100%; height: 100%; }

/* GÜNCELLENEN ETİKET STİLİ (Gölge kaldırıldı, sadece hafif çerçeve var) */
.google-style-label {
    color: white !important;
    font-family: 'Roboto', Arial, sans-serif !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    /* Yoğun gölge yerine sadece ince bir siyah dış hat bıraktık */
    text-shadow: 
        -1px -1px 0 #000,  
         1px -1px 0 #000,
        -1px  1px 0 #000,
         1px  1px 0 #000 !important;
    white-space: nowrap;
}

/* Mevki Listesi */
#mevki-listesi-container {
    width: 95%;
    max-width: 1200px;
    margin: 0 auto 30px auto;
    background: #fff;
    border-radius: 15px;
    padding: 20px 24px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

#mevki-listesi-baslik {
    font-size: 15px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 14px 0;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

#mevki-listesi {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.mevki-pill {
    padding: 6px 14px;
    background: #f0f2f5;
    border: 1px solid #e0e0e0;
    border-radius: 20px;
    font-size: 13px;
    color: #333;
    cursor: pointer;
    transition: background 0.15s, color 0.15s, border-color 0.15s;
    white-space: nowrap;
}

.mevki-pill:hover {
    background: #1B4332;
    color: #fff;
    border-color: #1B4332;
}

.mevki-pill.aktif {
    background: #1B4332;
    color: #fff;
    border-color: #1B4332;
}

.info-content { max-width: 220px; text-align: center; padding: 10px; }
.info-content h3 { margin: 0 0 10px 0; color: #2ecc71; font-size: 18px; }
.info-content p { font-size: 14px; color: #333; line-height: 1.5; }
.thumb-img { width: 100%; height: auto; border-radius: 8px; cursor: pointer; margin-bottom: 10px; }