.inventory-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.inventory-title-row h2 {
  margin-right: auto;
}

.icon-btn {
  width: 36px;
  height: 36px;
  min-width: 36px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.page-nav-buttons {
  display: flex;
  flex-direction: column;
  gap: 6px;
  position: absolute;
  right: 8px;
  top: 54px;
}

#resourcePanel,
#smithResourcePanel {
  position: relative;
}

.page-nav-btn.active {
  border-color: #a9cb72;
  background: #354a28;
  color: #efffd5;
}

.inventory-modal-card {
  width: min(860px, 94vw);
  max-height: 86vh;
  display: flex;
  flex-direction: column;
}

.inventory-modal-items {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 8px;
  overflow: auto;
  padding: 8px;
  border: 2px solid #605038;
  background: rgba(10, 8, 5, 0.28);
  scrollbar-width: thin;
  scrollbar-color: #7ea24c #2a2216;
}

.inventory-modal-items::-webkit-scrollbar {
  width: 12px;
}

.inventory-modal-items::-webkit-scrollbar-track {
  background: #2a2216;
  border-left: 1px solid #5a4a35;
}

.inventory-modal-items::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #95ba5f 0%, #607d36 100%);
  border: 2px solid #2a2216;
}

.inventory-item-btn {
  min-height: 76px;
  display: grid;
  grid-template-columns: 44px 1fr;
  align-items: center;
  gap: 8px;
  text-align: left;
  font-family: "VT323", monospace;
  font-size: 23px;
  line-height: 1.05;
}

.inventory-item-btn img {
  width: 42px;
  height: 42px;
  image-rendering: pixelated;
}

.inventory-item-name,
.inventory-item-count {
  display: block;
  overflow-wrap: anywhere;
}

.inventory-item-count {
  color: #d7f0ac;
}

.inventory-empty {
  font-size: 24px;
  color: #d9cca8;
  grid-column: 1 / -1;
  padding: 12px;
}
