/* Ortak aranabilir hesap seçim paneli */
.hesap-secim-panel {
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    background: #fbfdff;
    padding: 12px;
}

.hesap-secim-toolbar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.hesap-secim-toolbar-left {
    flex: 1 1 160px;
    min-width: 140px;
}

.hesap-secim-toolbar-mid {
    flex: 0 1 140px;
}

.hesap-secim-toolbar-right {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.hesap-secim-meta {
    display: flex;
    justify-content: space-between;
    gap: 8px;
    font-size: 12px;
    color: #64748b;
    margin-bottom: 8px;
    padding: 0 2px;
}

.hesap-secim-sayac {
    font-weight: 600;
    color: #0f172a;
}

.hesap-secim-listesi {
    max-height: 280px;
    overflow-y: auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 4px;
}

.hesap-secim-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 8px 10px;
    border-radius: 8px;
    margin: 0;
    cursor: pointer;
    border: 1px solid transparent;
    background: #fff;
}

.hesap-secim-item:hover {
    border-color: #e2e8f0;
    background: #f8fafc;
}

.hesap-secim-item input {
    margin-top: 3px;
}

.hesap-secim-item-body {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.hesap-secim-item-title {
    font-size: 13px;
    font-weight: 600;
    color: #0f172a;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.hesap-secim-item-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    align-items: center;
}

.hesap-secim-badge {
    font-size: 10px;
    font-weight: 600;
    padding: 1px 6px;
    border-radius: 4px;
    background: #f1f5f9;
    color: #475569;
}

.hesap-secim-badge.tip-depo { background: rgba(16, 185, 129, 0.12); color: #059669; }
.hesap-secim-badge.tip-sube { background: rgba(59, 130, 246, 0.12); color: #2563eb; }
.hesap-secim-badge.tip-franchise { background: rgba(139, 92, 246, 0.12); color: #7c3aed; }
.hesap-secim-badge.tip-uretim_merkezi { background: rgba(245, 158, 11, 0.12); color: #d97706; }

.hesap-secim-bolge-tag {
    font-size: 11px;
    color: #94a3b8;
}

.hesap-secim-empty {
    padding: 20px;
    text-align: center;
    color: #94a3b8;
    font-size: 13px;
}

.hesap-secim-item.is-hidden {
    display: none;
}

@media (min-width: 768px) {
    .hesap-secim-listesi {
        grid-template-columns: 1fr 1fr;
    }
}
