@@keyframes pulse-dot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.animate-pulse-dot {
    animation: pulse-dot 2s ease-in-out infinite;
}
