.chat-container{display:flex;flex-direction:column;gap:1rem;height:100%}.chat-message{display:flex;gap:.75rem;align-items:flex-end;animation:slide-in .3s ease-out}@keyframes slide-in{0%{opacity:0;transform:translateY(10px)}to{opacity:1;transform:translateY(0)}}.chat-message.user{justify-content:flex-end}.chat-avatar{width:2.5rem;height:2.5rem;border-radius:9999px;display:flex;align-items:center;justify-content:center;flex-shrink:0}.chat-avatar.bot{background-color:hsl(var(--bot-message-background)/.2);color:hsl(var(--bot-message-background))}.chat-avatar.user{background-color:hsl(var(--user-message-background));color:hsl(var(--user-message-foreground))}.message-content{max-width:80%}.chat-bubble{padding:.75rem 1rem;border-radius:1.5rem;color:white}.chat-bubble.bot{background-color:hsl(var(--bot-message-background));color:hsl(var(--bot-message-foreground));border-bottom-left-radius:.5rem}.chat-bubble.user{background-color:hsl(var(--user-message-background));color:hsl(var(--user-message-foreground));border-bottom-right-radius:.5rem}.chat-bubble img{max-width:250px;border-radius:1rem;margin-bottom:.5rem}.dot-flashing{position:relative;width:8px;height:8px;border-radius:5px;background-color:hsl(var(--bot-message-foreground));color:hsl(var(--bot-message-foreground));animation:dot-flashing 1s linear infinite alternate;animation-delay:.5s;margin:10px}.dot-flashing:after,.dot-flashing:before{content:"";display:inline-block;position:absolute;top:0}.dot-flashing:before{left:-12px;animation:dot-flashing 1s infinite alternate;animation-delay:0s}.dot-flashing:after,.dot-flashing:before{width:8px;height:8px;border-radius:5px;background-color:hsl(var(--bot-message-foreground));color:hsl(var(--bot-message-foreground))}.dot-flashing:after{left:12px;animation:dot-flashing 1s infinite alternate;animation-delay:1s}@keyframes dot-flashing{0%{background-color:hsl(var(--bot-message-foreground))}50%,to{background-color:hsl(var(--bot-message-foreground)/.3)}}