@import url('https://fonts.googleapis.com/css2?family=Hind+Siliguri:wght@300;400;500;600;700&display=swap');

body { 
    font-family: 'Hind Siliguri', sans-serif; 
}

/* Glass effect transitions */
.glass-card { 
    transition: background-color 0.3s, border-color 0.3s; 
}

/* Custom Scrollbar */
textarea::-webkit-scrollbar { 
    width: 6px; 
}
textarea::-webkit-scrollbar-thumb { 
    background: #d1d5db; 
    border-radius: 4px; 
}
.dark textarea::-webkit-scrollbar-thumb { 
    background: #4b5563; 
}

/* Animations */
.fade-up { 
    animation: fadeUp 0.6s ease-out forwards; 
    opacity: 0; 
    transform: translateY(15px); 
}
.delay-100 { animation-delay: 0.1s; }
.delay-200 { animation-delay: 0.2s; }
.delay-300 { animation-delay: 0.3s; }

@keyframes fadeUp { 
    to { opacity: 1; transform: translateY(0); } 
}

/* Pulse Animation for Recording */
.animate-pulse-red {
    animation: pulseRed 1.5s infinite;
}
@keyframes pulseRed {
    0% { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(239, 68, 68, 0); }
    100% { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0); }
}