/* Theme CSS - Tag and Goal Color System */

:root {
  /* System tag type colors */
  --color-savings: #28a745;
  --color-goal: #17a2b8;
  --color-expense: #dc3545;
  --color-income: #007bff;
  --color-transfer: #6c757d;
  --color-investment: #6f42c1;
}

/* Dark theme overrides (adjust if needed for better visibility) */
[data-bs-theme="dark"] {
  --color-savings: #28a745;
  --color-goal: #17a2b8;
  --color-expense: #dc3545;
  --color-income: #007bff;
  --color-transfer: #6c757d;
  --color-investment: #6f42c1;
}
