/* 現場買取台帳 カスタムスタイル */
body { font-family: -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Yu Gothic UI", "Meiryo", sans-serif; }

.num { font-variant-numeric: tabular-nums; }

/* スクロールバー */
::-webkit-scrollbar { height: 8px; width: 8px; }
::-webkit-scrollbar-thumb { background: #cbd5e1; border-radius: 4px; }
::-webkit-scrollbar-track { background: #f1f5f9; }

/* テーブル行ホバー */
tbody tr:hover { background-color: #f8fafc; }

/* モーダルアニメーション */
.modal-enter { animation: fadeIn .15s ease-out; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

/* 編集中インラインセル */
.cell-input { width: 100%; background: transparent; outline: none; }
.cell-input:focus { background: #eff6ff; }
