/* FleetFlow UI Stylesheet - Complements Tailwind CSS utilities */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

:root {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --color-brand: #4F46E5;
  --color-slate-900: #0F172A;
  --color-slate-800: #1E293B;
  --color-emerald: #10B981;
  --color-amber: #F59E0B;
  --color-rose: #EF4444;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: #F8FAFC;
  color: #0F172A;
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
}

/* Custom scrollbars */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
::-webkit-scrollbar-track {
  background: #F1F5F9;
}
::-webkit-scrollbar-thumb {
  background: #CBD5E1;
  border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
  background: #94A3B8;
}

/* Status Badges */
.badge-available {
  background-color: #ECFDF5;
  color: #065F46;
  border: 1px solid #A7F3D0;
}
.badge-in-service {
  background-color: #EFF6FF;
  color: #1E40AF;
  border: 1px solid #BFDBFE;
}
.badge-out-of-service {
  background-color: #FEF2F2;
  color: #991B1B;
  border: 1px solid #FECACA;
}
.badge-disposed {
  background-color: #F1F5F9;
  color: #475569;
  border: 1px solid #E2E8F0;
}

/* Transitions */
.drawer-backdrop {
  transition: opacity 0.2s ease-in-out;
}
.drawer-content {
  transition: transform 0.2s ease-in-out;
}
