diff --git a/app/modules/cupang/templates/cupang/form.html b/app/modules/cupang/templates/cupang/form.html
index 320145d..8cdb1df 100644
--- a/app/modules/cupang/templates/cupang/form.html
+++ b/app/modules/cupang/templates/cupang/form.html
@@ -68,12 +68,16 @@
diff --git a/app/static/cupang.css b/app/static/cupang.css
index 35c7f5a..7fcd1dc 100644
--- a/app/static/cupang.css
+++ b/app/static/cupang.css
@@ -88,12 +88,11 @@
@media (max-width: 940px) {
.cpg-form-head { flex-basis: 100%; width: 100%; }
}
-/* 라인 테이블 영역만 스크롤 (footer 는 하단 고정) */
+/* 라인 테이블 영역만 스크롤 */
.cpg-lines-scroll { flex: 1 1 auto; min-height: 0; overflow: auto; }
-.cpg-lines-foot {
- display: flex; justify-content: flex-end; gap: 8px;
- padding-top: 12px;
-}
+/* 제목행: 제목 + 설명 + (우측) 추가/삭제 버튼 */
+.cpg-lines-head { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
+.cpg-lines-btns { margin-left: auto; display: flex; gap: 8px; flex: 0 0 auto; }
/* 저장/취소 — 공통 헤더 카드 하단에 위치(우측 라인 수와 무관) */
.cpg-form-actions { margin-top: 16px; }
@@ -105,9 +104,12 @@
grid-template-columns: repeat(auto-fill, 185px);
gap: 12px 16px;
}
-/* 작성일·출고일·센터입고일·입고센터·출고방식·작업자 입력 185px 고정 */
-.cpg-header-grid .erp-input,
-.cpg-header-grid .erp-select { width: 185px; max-width: 185px; box-sizing: border-box; }
+/* 작성일·출고일·센터입고일·입고센터·출고방식·작업자 입력 185px 고정
+ (.cpg .erp-field > .erp-input width:100% 보다 특이도 높게) */
+.cpg .cpg-header-grid .erp-field > .erp-input,
+.cpg .cpg-header-grid .erp-field > .erp-select {
+ width: 185px; max-width: 185px; box-sizing: border-box;
+}
.cpg-rule-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));