#chatWidget {
    border-radius: 12px;
    padding: 16px;
    width: 320px;
    background-color: #fff;
    box-shadow: 0 4px 25px rgba(0,0,0,0.1);
}

#chatMessages {
    height: 300px;
    overflow-y: auto;
    margin-bottom: 16px;
    padding: 8px;
    font-family: 'Arial', sans-serif;
    scrollbar-width: thin;
    scrollbar-color: #8edac0 #eef7f6;
}

textarea[type="text"]#userMessage {
    width: 300px;
    padding: 12px 20px;
    margin: 8px 0;
    box-sizing: border-box;
    border: 2px solid #ccc;
    border-radius: 12px;
    height: 100px;
    resize: none;
}

/*button:hover {
    background-color: #45a049;
}*/

div > b {
    font-weight: bold;
    color: #333;
}

a {
    color: #007bff;
    text-decoration: none;
}

.client-message {
    text-align: right;
}

.client-message .message-content {
    display: inline-block;
    background-color: #20cba1;
    margin: 4px;
    padding: 10px 25px 10px 23px;
    border-radius: 60px;
    position: relative;
    float: right;
    clear: both;
	margin-bottom: 10px;
	color:white;
}

.client-message .message-content::after {
content: "";
position: absolute;
top: 55%;
right: -5px;
border-width: 10px;
border-style: solid;
border-color: #20cba1 transparent transparent transparent;
transform: rotate(225deg);
}

.bot-message {
    text-align: left;
}

.bot-message .message-content {
    display: inline-block;
    background-color: #f3f3f3;
    margin: 4px;
    padding: 10px 25px 10px 23px;
    border-radius: 60px;
    position: relative;
    float: left;
    clear: both;
}

.bot-message .message-content::before {
content: "";
position: absolute;
top: 66%;
left: -1px;
border-width: 11px;
border-style: solid;
border-color: transparent transparent transparent #f3f3f3;
transform: rotate(225deg);
}


.oper-message {
    text-align: left;
}

.oper-message .message-content {
    display: inline-block;
    background-color: #f3f3f3;
    margin: 4px;
    padding: 8px 12px;
    border-radius: 60px;
    position: relative;
    float: left;
    clear: both;
}

.oper-message .message-content::before {
content: "";
position: absolute;
top: 66%;
left: -1px;
border-width: 11px;
border-style: solid;
border-color: transparent transparent transparent #f3f3f3;
transform: rotate(225deg);
}


#sendMessage {
    background-color: #2cbf8b;
    color: white;
    margin: 8px 0;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    width: 300px;
    height: 30px;
}

#goToOperator, #clear_chat {
    background-color: #dcf3eb;
    color: black;
    margin: 8px 0;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    width: 300px;
    height: 30px;
}

#chatMessages::-webkit-scrollbar {
    width: 5px;
}

#chatMessages::-webkit-scrollbar-thumb {
    background: #eef7f6;
    border-radius: 4px;
}

#chatMessages::-webkit-scrollbar-thumb:hover {
    background: #8edac0;
}
#button{
	width: 300px;
	height: 30px;
	border-radius: 30px;
	background-color: fff;
	border-color: #f6f7f8;
	cursor: pointer;
	color: #b7bbc4;
	border: 1px solid;
	margin-bottom: 5px;
}
#button:hover{
	background-color: #dcf3eb;
	border-color: #dcf3eb;
	cursor: pointer;
	color: black;
}