
#chatbox-wrapper {
  position: fixed;
  bottom: 90px;
  right: 20px;
  width: 360px;
  max-height: 550px;
  background: #ffffff;
  border-radius: 0;
  display: flex;
  flex-direction: column;
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
  overflow: hidden;
  z-index: 9999;
  font-family: 'Roboto', sans-serif;
}

#chatbox-header {
  background: #0073aa;
  color: white;
  padding: 14px;
  font-size: 18px;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
}

#chatbox-body {
  flex: 1;
  padding: 14px;
  overflow-y: auto;
  font-size: 14px;
  min-height: 350px;
  max-height: 400px;
}

#chatbox-input {
  display: flex;
  padding: 10px;
  border-top: 1px solid #ddd;
  background: #f7f7f7;
}

#chatbox-message {
  flex: 1;
  padding: 0px 13px;
  border: none;
  outline: none;
  border-radius: 5px;
  background: #fff;
  font-size: 14px;
  height: 45px;
}

#chatbox-send {
  background: #0073aa;
  border: none;
  border-radius: 5px;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  margin-left: 8px;
  margin-right: 0;
  padding: 8px;
}

#chatbox-send svg {
  width: 15px;
  height: 15px;
}

#chatbox-toggle {
  position: fixed;
  bottom: 65px;
  right: 20px;
  background: rgba(0, 0, 0, 0.6);
  color: white;
  padding: 8px;
  font-size: 20px;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.chat-message-user {
  text-align: right;
  margin: 8px 0;
}

.chat-message-bot {
  text-align: left;
  margin: 8px 0;
  display: flex;
  align-items: flex-start;
}

.chat-message-user span, .chat-message-bot span {
  display: inline-block;
  padding: 10px 14px;
  border-radius: 5px;
  max-width: 75%;
  word-wrap: break-word;
}

.chat-message-user span {
  background: #f1f0f0;
  color: #333;
}

.chat-message-bot span {
  background: #ffffff;
  color: #333;
  border: 1px solid #e0e0e0;
}

.bot-avatar {
  width: 32px;
  height: 32px;
  background: #0073aa;
  color: white;
  border-radius: 50%;
  text-align: center;
  line-height: 32px;
  font-size: 14px;
  margin-right: 8px;
}
#chatbox-close {
  cursor: pointer;
}
.slick-initialized .slick-slide {
  float: right !important;
}
.chatbox-body .slick-prev, .chatbox-body .slick-next {
    width: 25px !important;
    height: 25px !important;
}