.chat-box {
    width: 300px;
    position: fixed;
    bottom: 20px;
    right: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: #fff;
    -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    min-height: 200px; /* Set minimum height */
    z-index: 900; /* Ensure chat box appears on top of other content */
}
.modal-backdrop {
   z-index: unset !important;
}
.chat-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 10px;
    border-bottom: 1px solid #ccc;
	height: 60px;
}

.logo {
    width: 30px;
    height: 30px;
    margin-right: 10px;
}

.title {
    margin: 0;
}

.close-btn {
    margin-left: auto;
    background: none;
    border: none;
    cursor: pointer;
}

.chat-messages {
    max-height: 300px;
    overflow-y: auto;
    padding: 10px;
	background-color: #F4F5F6;
}
.chat-input {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 10px;
    border-top: 1px solid #ccc;
}

#message-input {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

#generateBtn{
    color: #fff;
    border: none;
    border-radius: 5px;
   /* padding: 8px 15px;
    margin-left: 10px;*/
	margin-left: -40px;
    cursor: pointer;
}
#stopBtn {
	margin-left: -40px;
}
/* CSS */
.message-icon {
    width: 20px;
    height: 20px;
    margin-right: 5px;
}

/* header css */
.bot-message {
    
	display: -webkit-box;
    
	display: -ms-flexbox;
    
	display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start; /* Align items at the start of the cross axis */
    margin-bottom: 5px;
}
.bot-message-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start; /* Align items vertically */
}
.bot-message-text {
    padding: 8px;
    border-radius: 0px 8px 8px 8px;
    background: #FFF;
    -webkit-box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.10);
            box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.10);
			font-size: 13px;
}
.bot-message-text {
   word-wrap: break-word;
    white-space: break-spaces;
    width: 100%;
    display: grid;
}
.user-message {
    padding: 8px;
    border-radius: 5px;
    margin-bottom: 5px;
    text-align: right; 
    color: #FFF;
    font-family: Poppins;
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
    background-color: #208A87;
	margin-left: 24px;
}
span#bot-timestamp {
    color: #999;
    font-family: Poppins;
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
	padding-left: 24px;
}
span#user-timestamp {
    color: #999;
    font-family: Poppins;
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}
.ChatCommanClass {
    margin-top: 10px;
}
input#message-input {
    color: black;
    font-family: Poppins;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
	border: none;
	outline: none;
}

@media(max-width:767px){
	.chat-box {
		bottom: 70px;
	}
}