@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

@keyframes subtle-pulse {
    0%, 100% { border-color: #fecaca; }
    50% { border-color: #dc2626; }
}
.animate-urgent-border { animation: subtle-pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite; }

.pb-safe { padding-bottom: env(safe-area-inset-bottom); }

/* Scrollbar hiding for clean UI */
.no-scrollbar::-webkit-scrollbar { display: none; }
.no-scrollbar { -ms-overflow-style: none; scrollbar-width: none; }

.custom-scrollbar::-webkit-scrollbar { width: 6px; }
.custom-scrollbar::-webkit-scrollbar-track { background: transparent; }
.custom-scrollbar::-webkit-scrollbar-thumb { background-color: #cbd5e1; border-radius: 20px; }

.ping-dot { animation: ping 1.5s cubic-bezier(0, 0, 0.2, 1) infinite; }
@keyframes ping {
    75%, 100% { transform: scale(2.5); opacity: 0; }
}

.animate-fade-in { animation: fadeIn 0.4s ease-out forwards; }
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}
