/*
 Theme Name: Astra Child - Rapidline AI
 Template: astra
 Version: 1.0.4
*/

/* Fix WhatsApp chat animation - hide all messages initially, reveal with explicit classes */
.rl-wa-msg { opacity: 0 !important; }
.rl-wa-msg-1 { animation: rl-msg-appear 0.4s ease 0.5s forwards !important; }
.rl-wa-msg-2 { animation: rl-msg-appear 0.4s ease 1.8s forwards !important; }
.rl-wa-msg-3 { animation: rl-msg-appear 0.4s ease 2.8s forwards !important; }
.rl-wa-msg-4 { animation: rl-msg-appear 0.4s ease 4.5s forwards !important; }
.rl-wa-msg-5 { animation: rl-msg-appear 0.4s ease 5.8s forwards !important; }
/* Also handle nth-child for cached pages that still use old markup */
.rl-wa-chat > .rl-wa-msg:nth-of-type(1) { animation: rl-msg-appear 0.4s ease 0.5s forwards !important; }
.rl-wa-chat > .rl-wa-msg:nth-of-type(2) { animation: rl-msg-appear 0.4s ease 1.8s forwards !important; }
.rl-wa-chat > .rl-wa-msg:nth-of-type(3) { animation: rl-msg-appear 0.4s ease 2.8s forwards !important; }
.rl-wa-chat > .rl-wa-msg:nth-of-type(4) { animation: rl-msg-appear 0.4s ease 4.5s forwards !important; }
.rl-wa-chat > .rl-wa-msg:nth-of-type(5) { animation: rl-msg-appear 0.4s ease 5.8s forwards !important; }

@keyframes rl-msg-appear { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
