/* TEMEL STİLLER */
/*body {
    font-family: 'Segoe UI', system-ui, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f5f7fa;
    color: #333;
}

.header {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    padding: 15px 0;
    text-align: center;
    position: relative;f
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header h1 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600;
}

.header h1 i {
    margin-right: 10px;
}
*/
.koordinat-gosterge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(0,0,0,0.3);
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    backdrop-filter: blur(5px);
}

/* HARİTA KONTEYNER */
.harita-container {
    position: relative;
    width: 95%;
    max-width: 1200px;
    margin: 20px auto;
    border-radius: 10px;
    overflow: hidden;
    /*box-shadow: 0 0 25px rgba(0,0,0,0.15);*/
    background: white;
    /*border: 1px solid #e0e0e0;*/
}

.harita-image {
    width: 100%;
    display: block;
    transition: transform 0.3s ease;
}

/* ŞEHİR NOKTALARI */
.sehir-nokta {
    position: absolute;
    width: 16px;
    height: 16px;
    background: rgba(231, 76, 60, 0.7);
    border: 2px solid white;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
    transition: all 0.2s ease;
    z-index: 10;
}

.sehir-nokta:hover {
    transform: translate(-50%, -50%) scale(1.3);
    background: #ed1c24;
    box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.3);
}

/* TOOLTIP */
.tooltipmap {
    position: fixed;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.2);
    z-index: 1200;
    max-width: 400px;
    width: 90vw;
    display: none;
    animation: fadeInUp 0.3s ease;
    overflow: hidden;
}

.tooltipmap-header {
    background: linear-gradient(135deg, #3ea945, #318436);
    color: white;
    padding: 12px 15px;
    font-size: 1.2rem;
    font-weight: 600;
}

.tooltipmap-body {
    padding: 15px;
    max-height: 60vh;
    overflow-y: auto;
}

.bayi-listesi {
    margin-top: 10px;
}

.bayi-item {
    padding: 12px;
    margin-bottom: 10px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 3px solid #ed1c24;
}

.bayi-item h3 {
    margin: 0 0 5px 0;
    color: #2c3e50;
    font-size: 1rem;
    display: flex;
    align-items: center;
}

.bayi-item h3 i {
    margin-right: 8px;
    color: #ed1c24;
}

.bayi-info {
    margin-left: 23px;
    font-size: 0.9rem;
    color: #555;
}

.bayi-info p {
    margin: 5px 0;
    display: flex;
    align-items: center;
}

.bayi-info i {
    width: 18px;
    margin-right: 8px;
    color: #7f8c8d;
}

.action-buttons {
    display: flex;
    gap: 8px;
    margin-top: 10px;
}

.btn {
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 0.8rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    transition: all 0.2s;
}

.btn i {
    margin-right: 5px;
}

.btn-call {
    border: 1px #3ea945 solid;
    background: #3ea945;
    color: white;
}
.btn-call:hover { border:1px #3ea945 solid; background: #fff; color: #3ea945; }

.btn-email {
    border: 1px #ed1c24 solid;
    background: #ed1c24;
    color: white;
}
.btn-email:hover { border:1px #ed1c24 solid; background: #fff; color: #ed1c24; }

.btn-close {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(255,255,255,0.2);
    color: white;
    border: none;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.no-bayi {
    /*background: #fff8e1;*/
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    margin-top: 10px;
}

/* ANİMASYONLAR */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* MOBİL UYUMLULUK */
@media (max-width: 768px) {
    .header h1 {
        font-size: 1.2rem;
        padding: 0 40px;
    }
    
    .tooltipmap {
        width: 95vw;
        left: 2.5vw !important;
        right: 2.5vw !important;
    }
}