.support-container {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 1000;
}
.support-button {
  background-color: #007bff;
  color: white;
  border-radius: 30px;
  padding: 15px 20px;
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border: none;
  cursor: pointer;
  width: 260px;
  position: relative;
  z-index: 1;
  transition: background-color 0.3s;
}
.support-button:hover {
  background-color: #0056b3;
}
.support-button span {
  margin-left: 70px;
}
.support-image {
  position: absolute;
  bottom: -10px;
  left: -5px;
  width: 100px;
  height: auto;
  z-index: 2;
}
#chatBox {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 360px;
  height: 500px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
  display: none;
  flex-direction: column;
  z-index: 1000;
}
#chatHeader {
  background: linear-gradient(135deg, #007bff, #0056b3);
  color: white;
  padding: 15px;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  border-radius: 12px 12px 0 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#chatHeader img {
  cursor: pointer;
  width: 20px;
}
#chatHeader #supporter_icon{
	width:40px; 
	height:35px
	float: left;
}

#chatContent {
  flex: 1;
  padding: 15px;
  overflow-y: auto;
  font-family: Arial, sans-serif;
  font-size: 14px;
  line-height: 1.5;
  color: #333;
}
#suggestedQuestions {
  padding: 10px;
  border-bottom: 1px solid #ddd;
  display: flex;
  flex-wrap: wrap;
  gap: 3px;
}
#suggestedQuestions span {
  background-color: #007bff;
  color: white;
  padding: 5px 10px;
  border-radius: 20px;
  font-size: 12px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  white-space: nowrap;
}
#suggestedQuestions span:hover {
  background-color: #0056b3;
}
#chatInput {
  display: flex;
  border-top: 1px solid #ccc;
  padding: 10px;
  background: #f1f1f1;
  border-radius: 0 0 12px 12px;
  align-items: center;
}
#chatInput textarea {
  flex: 1;
  border: 1px solid #007bff;
  border-radius: 6px;
  padding: 10px;
  font-size: 14px;
  resize: none;
  outline: none;
  font-family: Arial, sans-serif;
  margin-right: 10px;
}
#chatInput button {
  background-color: #007bff;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
  transition: background-color 0.3s;
}
#chatInput button:hover {
  background-color: #0056b3;
}
#chatHistory {
  list-style-type: disc;
  margin: 0;
  padding: 0;
}
#chatHistory li {
  margin: 0px 5px;
  padding: 0px;
  line-height: 1.5;
}
#chatHistory strong {
  font-weight: bold;
}
#chatHistory span {
  display: inline;
  font-size: 14px;
  color: #333;
}
#btn_send {
  padding: 12px 25px;
  font-size: 16px;
}
