
/* Chatbot Styles */
.chatbot-container {
    position: fixed;
    bottom: 20px;
    right: 100px;
    width: 350px;
    max-height: 500px;
    z-index:100;
    display: none;
    flex-direction: column;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    background-color: #fff;
}

.chatbot-header {
    background-color: #0b5ed7;
    color: white;
    padding: 10px;
    text-align: center;
    font-size: 16px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.chatbot-body {
    padding: 10px;
    overflow-y: auto;
    height: 300px;
    display: flex;
    flex-direction: column;
}

.chatbot-body p {
    max-width: 70%;
    padding: 8px;
    border-radius: 5px;
    margin-bottom: 10px;
    word-wrap: break-word;
}

.chatbot-body .bot-message {
    background-color: #f1f1f1;
    align-self: flex-start;
}

.chatbot-body .user-message {
    background-color: #0b5ed7;
    color: white;
    align-self: flex-end;
}

.chatbot-input {
    display: flex;
    padding: 10px;
    border-top: 1px solid #e0e0e0;
}

.chatbot-input input {
    flex-grow: 1;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    outline: none;
}

.chatbot-input button {
    background-color: #0b5ed7;
    border: none;
    padding: 10px 15px;
    color: white;
    border-radius: 5px;
    margin-left: 5px;
    cursor: pointer;
}

.chatbot-toggle-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #0b5ed7;
    color: white;
    border: none;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}


@media (max-width:471px) {
    .chatbot-container {
        width: 70%;
    }
    .chatbot-input input{
        width: 60%;
    }
}
