.bayi-listesi-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Tüm Bayiler Bölümü */
.bayi-tum-bayiler-section {
    margin-bottom: 30px;
}

.bayi-tum-bayiler-header {
    background: #0073aa !important;
    color: #fff;
}

.bayi-tum-bayiler-header .bayi-bolge-title {
    color: #fff;
    font-size: 22px;
    text-transform: uppercase;
}

.bayi-tum-bayiler-header .bayi-bolge-icon img {
    filter: brightness(0) saturate(100%) invert(1);
}

.bayi-tum-bayiler-header .bayi-toggle-icon {
    color: #fff;
}

.bayi-bolge-badge {
    display: inline-block;
    margin-left: 10px;
    padding: 3px 10px;
    background: #e8f4f8;
    color: #0073aa;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.bayi-bolge-item {
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.bayi-bolge-header {
    background: #f5f5f5;
    padding: 15px 20px;
    cursor: pointer;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    transition: background-color 0.3s ease;
    user-select: none;
    gap: 0;
}

.bayi-bolge-icon {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.bayi-bolge-icon img {
    display: block;
    object-fit: contain;
}

/* Icon spacing ayarı inline style ile uygulanıyor, burada sadece temel stil var */

.bayi-bolge-header:hover {
    background: #e8e8e8;
}

.bayi-bolge-header.active {
    background: #0073aa;
    color: #fff;
}

.bayi-bolge-header.active .bayi-bolge-title {
    color: #fff;
}

.bayi-bolge-header.active .bayi-toggle-icon {
    color: #fff;
    transform: rotate(180deg);
}

.bayi-bolge-header.active .bayi-bolge-icon img {
    filter: brightness(0) saturate(100%) invert(1);
}

.bayi-bolge-title {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: #333;
    display: flex;
    align-items: center;
    gap: 10px;
    text-align: left;
    flex: 1;
}

.bayi-count {
    font-size: 14px;
    font-weight: normal;
    opacity: 0.8;
}

.bayi-toggle-icon {
    font-size: 12px;
    transition: transform 0.3s ease;
    color: #666;
    margin-left: auto;
    flex-shrink: 0;
}

.bayi-bayiler-list {
    padding: 0;
    background: #fff;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        max-height: 0;
    }
    to {
        opacity: 1;
        max-height: 1000px;
    }
}

.bayi-items {
    padding: 20px;
}

.bayi-item {
    padding: 15px;
    margin-bottom: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    background: #fafafa;
    transition: all 0.3s ease;
}

.bayi-item:hover {
    border-color: #0073aa;
    box-shadow: 0 2px 8px rgba(0,115,170,0.15);
}

.bayi-item:last-child {
    margin-bottom: 0;
}

.bayi-firma-adi {
    font-size: 16px;
    margin-bottom: 10px;
    color: #0073aa;
}

.bayi-telefon,
.bayi-adres {
    margin: 8px 0;
    font-size: 14px;
    line-height: 1.6;
}

.bayi-label {
    font-weight: 600;
    color: #555;
    margin-right: 5px;
}

.bayi-telefon a {
    color: #0073aa;
    text-decoration: none;
    transition: color 0.2s;
}

.bayi-telefon a:hover {
    color: #005177;
    text-decoration: underline;
}

.bayi-adres-link {
    color: #0073aa;
    text-decoration: none;
    transition: all 0.2s;
    display: inline-block;
    padding: 2px 0;
    border-bottom: 1px dotted #0073aa;
}

.bayi-adres-link:hover {
    color: #005177;
    border-bottom-color: #005177;
}

.bayi-bos {
    padding: 20px;
    text-align: center;
    color: #999;
    font-style: italic;
}


/* Responsive */
@media (max-width: 768px) {
    .bayi-listesi-container {
        padding: 10px;
    }
    
    .bayi-bolge-header {
        padding: 12px 15px;
    }
    
    .bayi-bolge-title {
        font-size: 16px;
    }
    
    .bayi-items {
        padding: 15px;
    }
    
    .bayi-item {
        padding: 12px;
    }
    
}

