.trade-container {
  width: 320px;
  background: #515151;
  border: 2px solid #666;
  padding: 5px;
  border-radius: 10px;
  height: fit-content;
}

.trade-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #6f6f6f;
  border: 2px solid #1e1e1e;
  padding: 6px;
  border-radius: 3px;
}

.item-slot {
  background-repeat: no-repeat;
  width: 48px;
  height: 48px;
  border: 2px solid transparent;
  position: relative;
  background-size: cover;
  background-position: center;
  border-radius: 7px;
  transition: all 0.3s ease; /* fixed transition unit */
}

.item-slot[style]:hover {
  border: 2px solid rgb(188, 255, 162);
  box-shadow: 0 0 5px rgba(188, 255, 162, 0.8);
  transform: scale(1);
}

.amount {
  position: absolute;
  bottom: 0;
  right: 2px;
  background: rgba(0, 0, 0, 0.3);
  color: #fff;
  font-size: 14px;
  padding: 1px 5px;
  border-radius: 3px;
}

.arrow {
  width: 35px;
  height: 35px;
  background: url("/images/arrow-xxl.png?v=1001") center/contain no-repeat;
  margin: 0 8px;
}

.quest-flex {
  gap: 4px;
}

.custom-tooltip {
  --bs-tooltip-bg: #ac24ff;
}
