.tbh-container {
    max-width: 1000px;
    margin: 20px auto;
    font-family: 'Open Sans', sans-serif;
}

.tbh-map-wrapper {
    width: 100%;
    margin-bottom: 30px;
}

#svg-turkiye-haritasi {
    width: 100%;
    height: auto;
}

/* Filter Styles */
.tbh-filter-wrapper {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
}

.tbh-city-select {
    width: 100%;
    max-width: 400px;
    padding: 12px 15px;
    border: 1px solid #dcdde1;
    border-radius: 8px;
    font-size: 1rem;
    color: #2f3640;
    background-color: #fff;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 15px;
}

.tbh-city-select:focus {
    outline: none;
    border-color: #3498db;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

/* Province styles */
#svg-turkiye-haritasi g[id] {
    cursor: pointer;
    transition: all 0.3s ease;
}

/* Default color */
#svg-turkiye-haritasi g[id] path {
    fill: #e5e5e5;
    stroke: #fff;
    stroke-width: 1px;
    transition: all 0.3s ease;
}

/* Province with records */
#svg-turkiye-haritasi g[data-plakakodu].tbh-has-records path {
    fill: #2980b9;
}

/* Hover effect - only for individual provinces */
#svg-turkiye-haritasi g[data-plakakodu]:hover path {
    fill: #185379 !important;
}

/* Active (Selected) province */
#svg-turkiye-haritasi g[data-plakakodu].is-active path {
    fill: #185379;
}

/* Dealer List */
.tbh-city-info {
    border-top: 2px solid #3498db;
    padding-top: 20px;
}

#tbh-selected-city-name {
    margin-top: 0;
    color: #2c3e50;
    margin-bottom: 20px;
}

.tbh-dealer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.tbh-dealer-card {
    background: #f9fbfe;
    border: 1px solid #e1e8f0;
    border-radius: 8px;
    padding: 20px;
    transition: transform 0.2s ease;
}

.tbh-dealer-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.tbh-dealer-card h4 {
    margin: 0;
    color: #2c3e50;
    font-size: 1.1rem;
    line-height: 1.4;
}

.tbh-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 15px;
}

.tbh-type-badge {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    white-space: nowrap;
}

.tbh-type-badge.bayi {
    background: #e1f5fe;
    color: #0288d1;
}

.tbh-type-badge.satis_noktasi {
    background: #f1f8e9;
    color: #558b2f;
}

.tbh-dealer-card p {
    margin: 8px 0;
    font-size: 0.9rem;
    color: #5d6d7e;
    line-height: 1.5;
}

.tbh-dealer-card p strong {
    color: #2c3e50;
    font-weight: 600;
}

.tbh-dealer-card a {
    color: #3498db;
    text-decoration: none;
    transition: color 0.2s ease;
}

.tbh-dealer-card a:hover {
    color: #2980b9;
}

.tbh-btn {
    display: inline-block;
    background: #3498db;
    color: #fff !important;
    padding: 10px 20px;
    border-radius: 6px;
    margin-top: 15px;
    font-weight: 600;
    font-size: 0.85rem;
    text-align: center;
    transition: background 0.3s ease;
}

.tbh-btn:hover {
    background: #2980b9;
}

.tbh-placeholder,
.tbh-no-dealers {
    font-style: italic;
    color: #bdc3c7;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .tbh-dealer-grid {
        grid-template-columns: 1fr;
    }
}