.chat-button {
  background: #00e5ff;
  border-radius: 50%;
  bottom: 20px;
  box-shadow: 0 4px 10px #0000004d;
  color: #fff;
  cursor: pointer;
  font-size: 20px;
  padding: 15px;
  position: fixed;
  right: 20px;
}

.chat-button:hover {
  background: #00b8cc;
}

.chat-container {
  background: #1c1c1c;
  border-radius: 12px 12px 0 0;
  box-shadow: 0 0 15px #00000080;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: fixed;
}

.chat-container.small-box {
  bottom: 0;
  height: 500px;
  padding-bottom: 9px;
  right: 0;
  width: 350px;
  z-index: 9999;
}

.chat-container.full-screen {
  border-radius: 0;
  height: 100%;
  left: 0;
  padding-bottom: 9px;
  top: 0;
  width: 100%;
  z-index: 9999;
}

.chat-header {
  align-items: center;
  background: #00e5ff;
  color: #111;
  display: flex;
  justify-content: space-between;
  padding: 12px;
}

.chat-header h3 {
  margin: 0;
}

.header-btn {
  background: #0000;
  border: none;
  color: #fff;
  cursor: pointer;
  font-size: 18px;
  margin-left: 8px;
}

.chat-body {
  display: flex;
  flex: 1 1;
  flex-direction: column;
  overflow-y: auto;
  padding: 10px;
}

.chat-message {
  border-radius: 16px;
  font-size: 14px;
  margin: 5px 0;
  max-width: 70%;
  padding: 8px 12px;
}

.chat-message.assistant {
  align-self: flex-start;
  background: #2e2e2e;
  color: #fff;
}

.chat-message.user {
  align-self: flex-end;
  background: #00e5ff;
  color: #111;
  font-weight: 600;
}

.chat-input {
  background: #1c1c1c;
  border-top: 1px solid #333;
  display: flex;
  padding: 8px;
}

.chat-input input {
  background: #2e2e2e;
  border: none;
  border-radius: 4px;
  color: #fff;
  flex: 1 1;
  outline: none;
  padding: 8px;
}

.chat-input button {
  background: #00e5ff;
  border: none;
  border-radius: 4px;
  color: #111;
  cursor: pointer;
  font-weight: 600;
  margin-left: 8px;
  padding: 8px 12px;
}

.chat-input button:hover {
  background: #00b8cc;
}

.chat-message.typing {
  display: flex;
  gap: 4px;
}

.chat-message.typing span {
  animation: blink 1.4s infinite;
  background: #fff;
  border-radius: 50%;
  display: inline-block;
  height: 6px;
  width: 6px;
}

.chat-message.typing span:nth-child(2) {
  animation-delay: 0.2s;
}

.chat-message.typing span:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes blink {
  0% {
    opacity: 0.2;
  }
  20% {
    opacity: 1;
  }
  to {
    opacity: 0.2;
  }
}

/*# sourceMappingURL=widget.4a34a57e.css.map*/
