/* Type toggle buttons */
.type-btn {
  color: #9ca3af;
  border-color: #374151;
  background: transparent;
}
.type-btn:hover {
  border-color: #6b7280;
  color: #f3f4f6;
}
.active-income {
  background: rgba(34, 197, 94, 0.15);
  border-color: #22c55e !important;
  color: #22c55e !important;
}
.active-expense {
  background: rgba(239, 68, 68, 0.15);
  border-color: #ef4444 !important;
  color: #ef4444 !important;
}

/* Transaction row hover */
.tx-row:hover {
  background: rgba(255, 255, 255, 0.03);
}

/* Scrollable list */
#txList {
  max-height: 520px;
  overflow-y: auto;
}

/* Toast */
#toast.show {
  opacity: 1;
}

/* Number inputs — remove spinner */
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
}
