/**
 * 품목마스터 — 모듈 전용 미세 조정.
 * 공통 컴포넌트(.c-drawer, .c-filterbar 등)는 common/layout/header.php 참조.
 */

/* 행 hover 시 cursor pointer (drawer 열기 가능 신호) */
#itemTable tbody tr[data-id] { cursor: pointer; }
#itemTable tbody tr[data-id]:focus-visible {
    outline: none;
    box-shadow: inset 0 0 0 1px rgb(139 149 255 / 0.4);
}

/* 인라인 편집 활성 시 padding 보정 */
#itemTable .c-cell-edit.is-editing { padding: 0; margin: 0; }
#itemTable .c-cell-edit.is-editing input { text-align: right; }

/* drawer 안 폼 — section padding 미세 조정 */
.c-drawer__body section { animation: fade-up 200ms var(--ease) backwards; }
