/* Profile reward history (injected into ProfileView) */
.dxd-history {
  margin-top: 0;
}
.dxd-history .section-title {
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 800;
}
.dxd-history-sub {
  margin: 0 0 12px;
  font-size: 12px;
  line-height: 1.4;
  color: var(--text-muted, #9a9a9a);
}
.dxd-history-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.dxd-history-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 11px;
  border-radius: var(--radius-sm, 10px);
  background: var(--bg-elevated, #1b1b1b);
  border: 1px solid rgba(255, 255, 255, 0.06);
}
.dxd-history-icon {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: #2a2a2a;
}
.dxd-history-svg {
  width: 16px;
  height: 16px;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.dxd-history-svg .dxd-history-svg-fill,
.dxd-history-svg-fill {
  fill: currentColor;
  stroke: none;
}
.dxd-history-icon.k-loot {
  background: linear-gradient(135deg, rgba(201, 162, 39, 0.28), rgba(138, 109, 18, 0.5));
}
.dxd-history-crystal-img {
  width: 18px;
  height: 18px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.35));
}
.dxd-history-icon.k-case {
  background: transparent;
  border: none;
  overflow: visible;
  width: 34px;
  height: 34px;
}
.dxd-history-case-img {
  width: 34px;
  height: 34px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.45));
}
.dxd-history-icon.k-task { background: linear-gradient(135deg, #2ecc71, #1b8f4a); }
.dxd-history-icon.k-gift {
  background: linear-gradient(135deg, rgba(250, 58, 58, 0.25), rgba(168, 31, 31, 0.45));
}
.dxd-history-gift-img {
  width: 20px;
  height: 20px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.35));
}
.dxd-history-body {
  flex: 1;
  min-width: 0;
}
.dxd-history-title {
  font-size: 13px;
  font-weight: 650;
  line-height: 1.35;
  color: var(--text, #eee);
}
.dxd-history-meta {
  margin-top: 3px;
  font-size: 11.5px;
  color: var(--text-muted, #9a9a9a);
}
.dxd-history-amount {
  flex-shrink: 0;
  font-size: 12.5px;
  font-weight: 750;
  color: var(--gold, #e0c35a);
  padding-top: 2px;
}
.dxd-history-empty,
.dxd-history-err,
.dxd-history-loading {
  font-size: 12.5px;
  color: var(--text-muted, #9a9a9a);
  margin: 0;
}
.dxd-history-err {
  color: var(--accent, #fa3a3a);
}
.dxd-history-more {
  margin-top: 10px;
  width: 100%;
}
