.history-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0 20px;
}

.history-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.059);
  border-radius: 16px;
  padding: 14px;
}

.history-item-icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255,255,255,0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.history-item-icon {
  width: 20px;
  height: 20px;
  filter: brightness(0) invert(1);
  opacity: 0.5;
}

.history-item-info {
  display: flex;
  flex-direction: column;
  gap: 3px;
  flex: 1;
}

.history-item-title {
  font-size: 14px;
  font-weight: 600;
}

.history-item-date {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
}

.history-item-amount {
  font-size: 15px;
  font-weight: 700;
  color: rgba(255,255,255,0.6);
  white-space: nowrap;
}

.history-item-amount--plus {
  color: #4cda64;
}
