/**
 * QuoteNest Dashboard Design System
 * CallRail / Stripe / Notion inspired
 */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

[data-app-shell="1"] {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

/* Dashboard palette */
:root {
  --qn-primary: #2563eb;
  --qn-primary-hover: #1d4ed8;
  --qn-primary-light: #eff6ff;
  --qn-success: #16a34a;
  --qn-success-light: #f0fdf4;
  --qn-urgency: #dc2626;
  --qn-urgency-light: #fef2f2;
  --qn-neutral: #64748b;
  --qn-radius: 0.75rem;
  --qn-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.05);
  --qn-shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.05), 0 4px 6px -4px rgb(0 0 0 / 0.05);
}

@keyframes fadeSlideIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
