/* Pegasus Realty CRM - Custom Styling & Mobile Polish */

:root {
  --primary: #0f172a;
  --accent: #2563eb;
  --accent-gold: #d97706;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  -webkit-tap-highlight-color: transparent;
}

/* Custom Scrollbars */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
::-webkit-scrollbar-track {
  background: #f1f5f9;
}
::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 9999px;
}
::-webkit-scrollbar-thumb:hover {
  background: #94a3b8;
}

/* Mobile responsive drawer animations */
.drawer-enter {
  transform: translateX(100%);
}
.drawer-enter-active {
  transform: translateX(0);
  transition: transform 0.25s ease-out;
}
.drawer-exit {
  transform: translateX(0);
}
.drawer-exit-active {
  transform: translateX(100%);
  transition: transform 0.2s ease-in;
}

/* Shimmer / Pulse badges */
@keyframes subtle-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}
.pulse-badge {
  animation: subtle-pulse 2s infinite ease-in-out;
}

/* Print styles for export / printing */
@media print {
  .no-print {
    display: none !important;
  }
}
