/* chatbot */
#chatbotImg {
  width: 50px;
  height: 50px;
  cursor: pointer;
  position: fixed;
  bottom: 50px;
  right: 50px;
  z-index: 1000;
  transition: width 0.2s ease; /* 크기 전환 부드럽게 */
}
#chatbotClose {
  width: 30px;
  height: 30px;
  cursor: pointer;
  position: fixed;
  bottom: 57px;
  right: 58px;
  z-index: 1000;
  transition: width 0.2s ease; /* 크기 전환 부드럽게 */
}
#chatContainer {
  position: fixed;
  bottom: 80px;
  right: 100px;
  width: 500px;
  height: 600px;
}
#chatbotFrame {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 10px; /* 선택 사항 */
}

/* 말풍선 */
#chatBubble {
  position: fixed;
  bottom: 96px;
  right: 82px;
  background-color: #fff;
  border: 2px solid #fff;
  border-radius: 15px;
  padding: 10px 20px;
  max-width: 300px;
  font-size: 16px;
  color: #333;
  /* box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2); */
  z-index: 999;
  display: block; /* 처음엔 보이도록 */
}
#chatBubble::after {
  content: "";
  position: absolute;
  bottom: -15px;
  right: 20px;
  border-width: 13px 0px 0 35px;
  border-style: solid;
  border-color: #ffffff transparent transparent transparent;
  /* filter: drop-shadow(0 -2px 2px rgba(0, 0, 0, 0.1)); */
}
