.chat-icon {
position: fixed;
bottom: 20px;
right: 20px;
width: 60px;
height: 60px;
background-color:#dda113;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
color: white;
font-size: 24px;
cursor: pointer;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

/* Chat container */
.chat-container {
position: fixed;
bottom: 90px;
right: 20px;
height: 410px;
width: 360px;
background-color: white;
border: 1px solid #ccc;
border-radius: 8px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
display: none;
flex-direction: column;
z-index:999;
}
.chat-container-header{
margin:10px 0 10px 0;
}
.chat-container-header p{
 font-family: Arial, Helvetica, sans-serif;
 font-size: 1.1rem;
 text-align: center;
}
/* Form and chat area */
.chat-form, .chat-messages {
    padding: 10px;
}
.chat-form-label-content label{
font-size: 1rem;
font-family: Arial, Helvetica, sans-serif;
}
input.chatregform-input{
margin:10px 0 10px 0;
width: 100%;
height: 38px;
border: 1px solid #dae8ed;
border-radius: 6px;
-webkit-border-radius: 6px;
padding: 0 0 0 5px;
outline:none;
}
input.chatFormStart_btn{
width: 100%;
height: 38px;
border:1px solid transparent;
background-color:#16071d;
border-radius: 6px;
-webkit-border-radius:6px;
font-size: 1.1rem;
color:#fff;
font-family: Arial, Helvetica, sans-serif;
cursor:pointer;
}
.chat-messages {
max-height: 300px;
overflow-y: auto;
border-bottom: 1px solid #ccc;
}
.message {
margin: 5px 0 5px 5px;
padding: 9px 0 7px 20px;
border-radius: 5px;
-webkit-border-radius: 5px;
}
.message.sent {
background-color: #e1f5fe;
margin-left: 20%;
position: relative;
border-radius: 18px 18px 0 18px;
-webkit-border-radius: 18px 18px 0 18px;
}
.message-names{
font-size: 0.9rem;
color: #6a6b6e;
position: absolute;
top: 3px;
left: 9px;
}
.sent .massage-text{
color: #0a0b24;
font-size: 1rem;
font-family: Arial, Helvetica, sans-serif;
margin: 10px 0 0 1px;
padding: 4px;
}
.message.received {
position: relative;
background-color: #f5f5f5;
margin-right: 20%;
border-radius: 18px 18px 18px 0px;
-webkit-border-radius: 18px 18px 18px 0px;
}
.received .massage-text{
color:#122233;
font-size: 1rem;
font-family: 'Courier New', Courier, monospace;
margin: 10px 0 0 1px;
padding: 4px;
}
form.chatMessage_sendForm{
width: 100%;
position: relative;
}
.chat-input {
display: flex;
padding: 10px;
}
.chat-input input {
width: calc(100% - 80px);
padding: 8px;
border: 1px solid #ccc;
border-radius: 4px;
-webkit-border-radius: 4px;
margin-right: 5px;
outline:none;
}
.chat-input-field-submit-flex{
display: flex;
display:-webkit-flex;
width: 100%;
position: relative;
}
input.chatSbt_btn{
width:80px;
padding: 8px 12px;
background-color: #4CAF50;
color: white;
border: none;
border-radius: 4px;
cursor: pointer;
}
.chat-input button:hover {
background-color: #45a049;
}
.chat_fileUploadIcon_content{
position: relative;
margin-top:10px;
}
input.chatFile_input{
width: 40px;
height: 40px;
border: none;
outline: none;
opacity: 0;
position: absolute;
left: -5px;
cursor: pointer;
}