/* Custom Inflow ERP Styles */
body {
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

/* Custom modern scrollbars */
::-webkit-scrollbar {
  width: 7px;
  height: 7px;
}

::-webkit-scrollbar-track {
  background: rgba(15, 23, 42, 0.6);
}

::-webkit-scrollbar-thumb {
  background: rgba(51, 65, 85, 0.8);
  border-radius: 9999px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(71, 85, 105, 1);
}

/* Print Styles for Order Invoice Modal */
@media print {
  body * {
    visibility: hidden;
  }
  #modal-order-details, #modal-order-details * {
    visibility: visible;
  }
  #modal-order-details {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: auto;
    background: white !important;
    color: black !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
  }
  #modal-order-details button {
    display: none !important;
  }
  .bg-slate-900, .bg-slate-950, .bg-slate-800 {
    background: white !important;
    color: black !important;
    border-color: #ddd !important;
  }
  .text-white, .text-slate-100, .text-slate-200, .text-slate-300, .text-slate-400 {
    color: black !important;
  }
}

/* Passcode Lock Shake Animation */
@keyframes shake {
  0%, 100% { transform: translateX(0); }
  20%, 60% { transform: translateX(-8px); }
  40%, 80% { transform: translateX(8px); }
}

.animate-shake {
  animation: shake 0.4s ease-in-out;
}

