/* src/styles/theme.css */
:root {
  --background: #f9fafb;
  --foreground: #111827;
  --primary-color: #1d4ed8; /* default blue */
  --secondary-color: #10b981; /* default green */
  --accent-color: #f59e0b; /* default amber */
}

/* Utility class to apply background and foreground */
.bg-primary {
  background-color: var(--primary-color);
}
.text-primary {
  color: var(--primary-color);
}

/* Add more utility classes as needed */
