/* Add your custom styles here */
#chat-container {
    max-height: 400px;
    overflow-y: auto;
    padding: 15px;
    border-radius: 5px;
    background-color: #fff;
}

.message-container {
    margin-bottom: 10px;
     word-wrap: break-word;
}

.user-message {
    color: #007bff;
    text-align: left;
    max-width: 250px;
}

.bot-message {
    color: #28a745;
    text-align: right;
   
     max-width: 250px; /* Add this line */
    margin-left: auto; /* Add this line */
}

.timestamp {
    font-size: 12px;
    color: #6c757d;
}

.typing-indicator {
    font-size: 12px;
    color: #6c757d;
    text-align: right;
}

/* Chat icon styles */
#chat-icon {
    z-index: 20;
    position: fixed;
    bottom: 50px;
    left: 20px;
    font-size: 24px;
    color: #fff;
    cursor: pointer;
    background-color: #7FDBFF;
    border-radius: 50%;
    padding: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

#chat-dialog {
    z-index: 20;
    display: none;
    position: fixed;
    bottom: 70px;
    left: 50px;
    /* right: 800px; */
    width: 400px;
    height: 500px;
/*            overflow-y: auto;*/
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: #fff;
/*            padding: 10px;*/
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

#chat-header {
    text-align: center;
    font-weight: bold;
    color: #fff;
    background-color: #007bff;
    padding: 5px;
    border-radius: 5px 5px 0 0;
}

#close-chat {
    position: absolute;
    top: 5px;
    right: 5px;
    cursor: pointer;
    color: #fff;
}

.input-group {
    position: absolute;
    bottom: 1px;
    left: 0px;
    width: 100%;
}

.input-group input {
    border-radius: 5px;
}

.input-group-append button {
    border-radius: 5px;
}

 /* Media query for responsiveness */
@media (max-width: 768px) {
    #chat-dialog {
        width: 100%;
        right: 0;
        left:0;
    }
}

/* Add your custom styles here */
/* ... (existing styles) */

.badge-option {
display: inline-block;
margin-right: 10px;
cursor: pointer;
}
