:root {
    --chatbot-primary-color: #3b82f6;
    --chatbot-secondary-color: #2563eb;
    --chatbot-link-color: #2563eb;
    --chatbot-link-hover-color: #598bf7;
    --chatbot-background-color: #f9fafb;
    --chatbot-text-color: #ffffff;
    --chatbot-border-radius: 0.5rem;
    --chatbot-box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --chatbot-font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes pulse-glow {

    0%,
    100% {
        box-shadow: 0 0 20px rgba(59, 130, 246, 0.5);
    }

    50% {
        box-shadow: 0 0 30px rgba(59, 130, 246, 0.8);
    }
}

.animate-float {
    animation: float 3s ease-in-out infinite;
}

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

.chatbot-message a {
    color: var(--chatbot-link-color) !important;
}

.chatbot-message a:hover {
    text-decoration: underline !important;
    color: var(--chatbot-link-hover-color) !important;
}