/* =========================================
   TRANSACTION LIST
   ========================================= */
.trx-item {
  display: flex;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  gap: 12px;
  cursor: pointer;
}
.trx-item:last-child { border-bottom: none; }
.trx-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}
.trx-icon.sale { background: var(--green-bg); color: var(--green); }
.trx-icon.expense { background: var(--red-bg); color: var(--red); }
.trx-info { flex: 1; min-width: 0; }
.trx-info .trx-title { font-weight: 700; font-size: 14px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.trx-info .trx-sub { font-size: 12px; color: var(--text3); }
.trx-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.trx-amount { font-weight: 800; font-size: 15px; text-align: right; white-space: nowrap; }
.trx-amount.green { color: var(--green); }
.trx-amount.red { color: var(--red); }
