diff --git a/app/modules/expense/templates/expense/index.html b/app/modules/expense/templates/expense/index.html
index 14546c3..40c4cb1 100644
--- a/app/modules/expense/templates/expense/index.html
+++ b/app/modules/expense/templates/expense/index.html
@@ -101,9 +101,9 @@
분류 |
수단 |
가맹점 |
- 금액 |
+ 금액 |
상태 |
- 동작 |
+ |
@@ -188,6 +188,19 @@
.erp-expense .erp-summary-card--mini { padding: 8px 14px; }
/* 요약줄과 2단 블록 사이 간격 */
.ex-two-col { margin-top: var(--sp-20); }
+
+ /* 경비 내역 테이블: 전부 가운데 정렬 + 한 줄(2줄 방지) + 너비 자동 */
+ #ex-table { table-layout: auto; }
+ #ex-table th, #ex-table td {
+ text-align: center !important;
+ white-space: nowrap;
+ width: auto !important;
+ vertical-align: middle;
+ }
+ #ex-table th:first-child, #ex-table td:first-child { width: 36px !important; }
+ #ex-table td > div { white-space: nowrap; } /* 가맹점/메모 줄바꿈 방지 */
+ #ex-tbody .js-actions { text-align: center !important; }
+ #ex-tbody .js-actions > * { margin: 0 2px; }
.erp-expense .erp-summary-value { font-size: 20px; line-height: 1.1; }
.erp-expense .erp-summary-value--sm { font-size: 18px; }