/* CWG HR array-tab ingestion panel (lane UX-ARRAYS, 2026-09-26).
 *
 * HR-UX-SPEC.md section 4.2: each of the six simple array tabs
 * (Dependants/Emergency contacts/Insurance/Education/Immigration/Bank)
 * gets an "Add from document" panel above its inline row editor, composed
 * from primitives UX-L1 already shipped in module-hr-cwg-dense.css
 * (.gsp-dropzone via the Dropzone component, .gsp-suggestion-card via the
 * SuggestionCard component). This file adds only the two small layout
 * classes those primitives don't already provide: the panel's own
 * vertical stack, and the vertical gap between stacked suggestion cards.
 * Additive-only -- no existing selector is redeclared.
 *
 * Loaded after module-hr-cwg-dense.css and before red-plate.css
 * (src/lib/designSystems.ts SKIN_AND_MODULE_CSS_FILES), same placement
 * rule as every other module skin.
 */
.gsp-array-ingest {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 10px 0;
}
.gsp-array-ingest__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
