/* public/components/payments/payments.css */

.invoice-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  background: var(--bg3);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  margin-bottom: 8px;
  transition: border-color 0.2s ease;
}

.invoice-row:hover {
  border-color: var(--line2);
}

.invoice-number {
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
}

.invoice-client {
  font-size: 12px;
  color: var(--text);
  font-weight: 600;
}

.invoice-amount {
  font-family: var(--mono);
  font-size: 14px;
  font-weight: 700;
  color: var(--green);
}
