/* 
 * Frontend stilleri 
 * codwork.com tasarım kodlama Tuncay Çelik
 */
.gwm-map-container {
    margin-bottom: 20px;
    position: relative;
    width: 100%;
}

#gwm-map {
    width: 100%;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.gwm-popup {
    max-width: 300px;
}

.gwm-popup h3 {
    margin: 0 0 10px 0;
    font-size: 16px;
}

.gwm-popup p {
    margin: 0 0 5px 0;
    font-size: 14px;
}

/* Responsive tasarım iyileştirmeleri */
@media screen and (max-width: 767px) {
    #gwm-map {
        height: 350px !important; /* Mobil cihazlarda daha küçük harita yüksekliği */
    }
    
    .gwm-popup {
        max-width: 200px; /* Mobil cihazlarda daha küçük popup genişliği */
    }
    
    .gwm-popup h3 {
        font-size: 14px; /* Mobil cihazlarda daha küçük başlık */
        margin-bottom: 5px;
    }
    
    .gwm-popup p {
        font-size: 12px; /* Mobil cihazlarda daha küçük metin */
    }
    
    /* Harita kontrolleri için daha büyük dokunma alanı */
    .leaflet-control-zoom a {
        width: 30px !important;
        height: 30px !important;
        line-height: 30px !important;
        font-size: 18px !important;
    }
}

/* Tablet için orta boyut */
@media screen and (min-width: 768px) and (max-width: 1023px) {
    #gwm-map {
        height: 400px !important;
    }
}
