/**
 * 거래처 — 모듈 전용 미세 조정.
 */

#vendorTable tbody tr[data-id] { cursor: pointer; }
#vendorTable tbody tr[data-id]:focus-visible {
    outline: none;
    box-shadow: inset 0 0 0 1px rgb(139 149 255 / 0.4);
}

.c-drawer__body section { animation: fade-up 200ms var(--ease) backwards; }

/* radio 카드 (유형 선택 — 매입 / 매출 / 양방향) */
#typeSelector input[type="radio"]:focus-visible + div {
    box-shadow: inset 0 0 0 1px rgb(139 149 255 / 0.4), 0 0 0 3px rgb(139 149 255 / 0.2);
}

/* 삭제 탭 위험 패널 — 좌측 빨강 액센트. rgba 직접값 대신 --red 토큰 사용. */
.vendor-danger-panel {
    padding: 14px 16px;
    border-left: 3px solid var(--red);
}
