/* SBH Bayi Harita Stilleri */




.sbh-bayi-harita-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.sbh-bayi-harita-container h2 {
    text-align: center;
    color: #333;
    margin-bottom: 30px;
    font-size: 2.5em;
    font-weight: 300;
}

/* Harita Container */
.sbh-map-container {
    text-align: center;
    margin-bottom: 40px;
    background: #fff;
    border-radius: 10px;
    
    padding: 20px;
    overflow: hidden;
}

.sbh-map-container svg {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* SVG Path Stilleri */
.sbh-map-container path[id^="trjs"] {
    transition: fill 0.3s ease;
    cursor: pointer;
    stroke: #333;
    stroke-width: 1;
}

.sbh-map-container path[id^="trjs"]:hover {
    fill: #FFB6B6 !important;
}

.sbh-map-container path[id^="trjs"].selected {
    fill: #FF6B6B !important;
    stroke: #FF4757;
    stroke-width: 2;
}

/* Bayiler Container */
.sbh-bayiler-container {
    background: #fff;
    border-radius: 10px;
    padding: 30px;
    min-height: 200px;
    border: 1px solid #dbdbdb;
}

.sbh-bayiler-list {
    min-height: 150px;
}

/* Seçim yapılmamış durumu */
.sbh-no-selection {
    text-align: center;
    color: #666;
    font-size: 1.2em;
    margin: 50px 0;
    font-style: italic;
}

/* Bayi bulunamadı durumu */
.sbh-no-bayiler {
    text-align: center;
    padding: 40px 20px;
}

.sbh-no-bayiler h3 {
    color: #333;
    margin-bottom: 15px;
    font-size: 1.5em;
}

.sbh-no-bayiler p {
    color: #666;
    font-size: 1.1em;
}

/* Bayiler Header */
.sbh-bayiler-header {
    border-bottom: 2px solid #FF6B6B;
    margin-bottom: 25px;
    padding-bottom: 15px;
	text-align: center;
}

.sbh-bayiler-header h3 {
    color: #333;
    margin: 0;
    font-size: 1.8em;
    font-weight: 500;
}

/* Bayi Item */
.sbh-bayi-item {
	min-height:180px;
    background: #f8f9fa;
    border-radius: 8px;
    padding: 25px;
    border: 1px solid red;
    transition: all 0.3s ease;
    width: 100%;
    display: inline-block;
    vertical-align: top;
    box-sizing: border-box;
}

.sbh-bayiler-kapsam {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.sbh-roseairler {
    border: 1px solid gray;
}

.sbh-bayi-item:nth-child(4n) {
    margin-right: 0;
}

.sbh-bayi-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0,0,0,0.1);
}

.sbh-bayi-item h4 {
    color: #333;
    margin: 0 0 15px 0;
    font-size: 15px;
    font-weight: 600;
}

.sbh-bayi-content {
    color: #555;
    line-height: 1.6;
    font-size: 14px;
}

.sbh-bayi-content p {
    margin: 0 0 10px 0;
}

.sbh-bayi-content p:last-child {
    margin-bottom: 0;
}

/* Responsive Tasarım */
@media (max-width: 768px) {
    .sbh-bayiler-kapsam {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 15px;
}
    
    .sbh-bayi-harita-container {
        padding: 10px;
    }
    
    .sbh-bayi-harita-container h2 {
        font-size: 2em;
        margin-bottom: 20px;
    }
    
    .sbh-map-container {
        padding: 10px;
        margin-bottom: 20px;
    }
    
    .sbh-bayiler-container {
        padding: 20px;
    }
    
    .sbh-bayi-item {
        padding: 20px;
        width: 100%;
    }
    
    .sbh-bayi-item:nth-child(2n) {
        margin-right: 0;
    }
    
    .sbh-bayi-item h4 {
        font-size: 15px;
    }
    
    .sbh-bayi-content {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    
    .sbh-bayiler-kapsam {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 15px;
}
    
    .sbh-bayi-harita-container h2 {
        font-size: 1.5em;
    }
    
    .sbh-bayiler-header h3 {
        font-size: 1.4em;
    }
    
    .sbh-bayi-item {
        padding: 15px;
        width: 100%;
        margin-right: 10px;
    }
    
    .sbh-bayi-item:nth-child(2n) {
        margin-right: 0;
    }
    
    /* Mobilde dropdown zaten görünür */
    .sbh-mobile-sehir-select {
        max-width: 350px;
    }
}

/* Loading Animasyonu */
.sbh-loading {
    text-align: center;
    padding: 40px 20px;
}

.sbh-loading::after {
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #FF6B6B;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Smooth Transitions */
.sbh-bayiler-list {
    transition: all 0.3s ease;
}

.sbh-bayi-item {
    animation: fadeInUp 0.5s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Harita Zoom Efekti - Kaldırıldı */

/* SVG Text Elementleri - Sadece Seçimi Devre Dışı Bırak */
.sbh-map-container text {
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

/* Mobil Şehir Seçimi Dropdown */
.sbh-mobile-sehir-select {
    display: block;
    margin: 20px auto;
    max-width: 400px;
    text-align: center;
}

.sbh-mobile-sehir-select .select-container {
    display: flex;
    gap: 10px;
    align-items: center;
}

.sbh-mobile-sehir-select select {
    flex: 1;
    padding: 12px 15px;
    border: 2px solid #FF6B6B;
    border-radius: 8px;
    font-size: 16px;
    background: #fff;
    color: #333;
    cursor: pointer;
    transition: all 0.3s ease;
}

.sbh-mobile-sehir-select select:focus {
    outline: none;
    border-color: #FF4757;
    box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.1);
}

.sbh-mobile-sehir-select .goster-btn {
    padding: 12px 20px;
    background: #FF6B6B;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.sbh-mobile-sehir-select .goster-btn:hover {
    background: #FF4757;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 107, 107, 0.3);
}

.sbh-mobile-sehir-select .goster-btn:active {
    transform: translateY(0);
}

.sbh-mobile-sehir-select label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: #333;
    font-size: 16px;
}

/* Bayi İçeriği Stilleri */
.sbh-bayi-content strong {
    color: #FF6B6B;
    font-weight: 600;
}

.sbh-bayi-content a {
    color: #FF6B6B;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-bottom 0.3s ease;
}

.sbh-bayi-content a:hover {
    border-bottom: 1px solid #FF6B6B;
}

/* Özel Scroll Bar */
.sbh-bayiler-container::-webkit-scrollbar {
    width: 8px;
}

.sbh-bayiler-container::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.sbh-bayiler-container::-webkit-scrollbar-thumb {
    background: #FF6B6B;
    border-radius: 4px;
}

.sbh-bayiler-container::-webkit-scrollbar-thumb:hover {
    background: #FF4757;
} 