.ba-header {
    margin-bottom: 15px;
}

.ba-header h1 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 4px;
}

.ba-header p {
    color: #6b7280;
    font-size: 0.95rem;
    margin: 0;
}

.ba-empty {
    text-align: center;
    padding: 60px 20px;
    color: #9ca3af;
}

.ba-empty i {
    font-size: 3rem;
    margin-bottom: 16px;
    opacity: 0.5;
}

.ba-empty p {
    font-size: 1rem;
    margin: 0;
}

.ba-card {
    background: #fff;
    border-radius: 10px;
    border: 1px solid #e5e7eb;
    overflow: hidden;
    transition: box-shadow 0.15s ease, transform 0.15s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.ba-card:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.ba-card-header {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 20px;
    border-bottom: 1px solid #f3f4f6;
}

.ba-logo {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
}

.ba-logo img {
    width: 36px;
    height: 36px;
    object-fit: contain;
}

.ba-bank-info {
    min-width: 0;
}

.ba-bank-name {
    font-size: 0.95rem;
    font-weight: 700;
    color: #111827;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ba-currency {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    color: #6b7280;
    background: #f3f4f6;
    padding: 1px 8px;
    border-radius: 4px;
    margin-top: 4px;
    letter-spacing: 0.5px;
}

.ba-card-body {
    padding: 16px 20px 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ba-field {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.ba-label {
    font-size: 0.7rem;
    font-weight: 700;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ba-value {
    font-size: 0.9rem;
    font-weight: 500;
    color: #374151;
    word-break: break-all;
}

.font-monospace {
    font-family: 'SFMono-Regular', Consolas, 'Liberation Mono', Menlo, monospace;
    font-size: 0.85rem;
    letter-spacing: 0.3px;
}

.ba-iban-row {
    display: flex;
    align-items: center;
    gap: 8px;
}

.ba-iban-value {
    flex: 1;
    min-width: 0;
}

.ba-copy-btn {
    width: 30px;
    height: 30px;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    background: #fff;
    color: #6b7280;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.15s ease;
    flex-shrink: 0;
    font-size: 0.8rem;
}

.ba-copy-btn:hover {
    border-color: var(--nav-accent);
    color: var(--nav-accent);
    background: color-mix(in srgb, var(--nav-accent) 6%, #fff);
}

.ba-copy-btn.copied {
    border-color: #16a34a;
    color: #16a34a;
    background: #dcfce7;
}

@media (max-width: 767.98px) {
    .ba-header h1 {
        font-size: 1.25rem;
    }
}
