/* SafeZone AI Custom Styling */

@keyframes pulse-glow {
  0%, 100% {
    box-shadow: 0 0 15px rgba(239, 68, 68, 0.4);
  }
  50% {
    box-shadow: 0 0 25px rgba(239, 68, 68, 0.8);
  }
}

.sos-glow {
  animation: pulse-glow 2s infinite ease-in-out;
}

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

::-webkit-scrollbar-track {
  background: #090d16;
}

::-webkit-scrollbar-thumb {
  background: #1f293d;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #374151;
}
