#chatbot-container {
    position: fixed;
    bottom: 60px;
    right: 20px;
    z-index: 9999;
}

#chatbot-icon {
    height: 60px;
    width: 100px;
    cursor: pointer;
}

#chatbot-icon img {
    animation: upDown 2s infinite; /* Apply animation */
}

/* Keyframes for up-down movement */
@keyframes upDown {
    0%, 100% {
        transform: translateY(0); /* Starting and ending position */
    }
    50% {
        transform: translateY(-10px); /* Move up by 10px */
    }
}


#chatbot-popup {
    display: none;
    position: absolute;
    bottom: 99px;
    right: 60px;
    width: 300px;
    background-color: white;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    padding: 15px;
}

.chatbot-message {
    font-size: 14px;
    line-height: 1.5;
    color: #333;
    min-height: 60px; /* Ensures a consistent height during typing */
}

.chatbot-buttons {
    display: flex;
    justify-content: space-evenly;
    margin-top: 25px;
}

.chatbot-button {
    text-decoration: none;
    border: 2px solid #f05a24;
    padding: 8px 15px;
    border-radius: 5px;
    font-size: 14px;
    color: #f05a24;
    transition: background-color 0.3s;
}

.chatbot-button:hover {
    background-color: #f05a24;
    color: white;
}



/* Mobile-specific styles */
@media (max-width: 768px) { /* Adjust the breakpoint if necessary */
#chatbot-icon img {
    max-width: 42%;
    height: auto;
    border-style: none;
}
#chatbot-popup {
    display: none;
    position: absolute;
    bottom: 121px;
    right: 140px;
    width: 296px;
    background-color: white;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    padding: 15px;
}
	
#chatbot-container {
    position: fixed;
    bottom: 41px;
    right: -100px;
    z-index: 9999;
}
	#chatbot-icon {
    height: 118px;
    width: 205px;
    cursor: pointer;
}
}
