/* inventory_panel.css */
/* ============================
   背包面板
   依赖：无
   ============================ */
.inventory-tabs {
  display: flex;
  gap: 5px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}
.inventory-tabs .btn.active {
  border-color: #6b4a30;
  background: linear-gradient(180deg, #3a2512 0%, #221108 100%);
}
.inventory-list {
  max-height: 300px;
  overflow-y: auto;
}
.item-entry {
  background: #1a1410;
  padding: 6px;
  margin-bottom: 4px;
  border-radius: 4px;
}