/* HubActiva — Shared Styles */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
  --ha-indigo-50: #eef2ff;
  --ha-indigo-100: #e0e7ff;
  --ha-indigo-500: #6366f1;
  --ha-indigo-600: #4f46e5;
  --ha-indigo-700: #4338ca;
  --ha-indigo-800: #3730a3;
  --ha-indigo-900: #312e81;
  --ha-orange-400: #fb923c;
  --ha-orange-500: #f97316;
  --ha-orange-600: #ea580c;
  --ha-amber-400: #fbbf24;
  --ha-amber-500: #f59e0b;
  --ha-gray-50: #f8fafc;
  --ha-gray-100: #f1f5f9;
  --ha-gray-200: #e2e8f0;
  --ha-gray-300: #cbd5e1;
  --ha-gray-400: #94a3b8;
  --ha-gray-500: #64748b;
  --ha-gray-600: #475569;
  --ha-gray-700: #334155;
  --ha-gray-800: #1e293b;
  --ha-gray-900: #0f172a;
}

* {
  box-sizing: border-box;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Print styles for facture */
@media print {
  .no-print { display: none !important; }
  body { background: white !important; }
}

/* Smooth scroll */
html {
  scroll-behavior: smooth;
}

/* Focus styles */
*:focus-visible {
  outline: 2px solid var(--ha-indigo-500);
  outline-offset: 2px;
  border-radius: 4px;
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--ha-gray-100);
}
::-webkit-scrollbar-thumb {
  background: var(--ha-gray-300);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--ha-gray-400);
}
