/* İlçe butonları */
.district-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.district-buttons .btn {
    margin-bottom: 5px;
    font-size: 0.9rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: all 0.2s ease;
}

.district-buttons .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Mobil düzenleme */
@media (max-width: 768px) {
    .district-buttons .btn {
        font-size: 0.8rem;
        padding: 4px 8px;
    }

    .district-buttons {
        gap: 6px;
    }
}

/* SEO içeriği stilleri */
.seo-content {
    line-height: 1.8;
    color: #333;
    font-size: 1rem;
    margin-top: 25px;
}

.seo-content p {
    margin-bottom: 18px;
    text-align: justify;
}

.seo-content strong {
    font-weight: 600;
    color: #0d6efd;
}

.seo-content h3 {
    margin-top: 25px;
    margin-bottom: 15px;
    font-size: 1.3rem;
    color: #0d6efd;
}

@media (max-width: 768px) {
    .seo-content {
        font-size: 0.95rem;
        line-height: 1.7;
    }

    .seo-content h3 {
        font-size: 1.2rem;
    }
}

/* Harita stillemeleri */
#map {
    height: 500px;
    width: 100%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 0;
    z-index: 1;
}

/* Harita popup stillemeleri */
.leaflet-popup-content-wrapper {
    border-radius: 8px;
    padding: 0;
    overflow: hidden;
}

.pharmacy-popup {
    padding: 12px;
    width: 250px;
}

.pharmacy-popup h5 {
    color: #0d6efd;
    margin-bottom: 8px;
    border-bottom: 1px solid #eee;
    padding-bottom: 8px;
}

.pharmacy-popup p {
    margin-bottom: 6px;
    font-size: 14px;
}

.pharmacy-popup .btn-group {
    margin-top: 10px;
}

.badge-nobetci {
    background-color: #dc3545;
    color: white;
    font-size: 12px;
    padding: 4px 8px;
    border-radius: 4px;
    display: inline-block;
    margin-left: 8px;
} 