.chatgpt-bubble {
  background: #303030ff;
  color: #fff;
  padding: 13px 20px;
  border-radius: 12px;
  max-width: 800px;
  width: 800px;
  min-height: 110px;
  font-size: 28px;
  line-height: 1.5;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  margin: 12px 0;
  position: relative;
  overflow-wrap: break-word;
  word-break: break-word;
}

.typing-heading {
  display: inline;
  white-space: normal;
  width: 100%;
}

.typing-heading .typing-text {
  display: inline;
  white-space: pre-wrap;
  word-wrap: break-word;
}

.typing-heading .typing-caret {
  display: inline-block;
  width: 2px;
  height: 1.2em;
  background: #fff;
  margin-left: 2px;
  vertical-align: middle;
  position: relative;
}

.typing-heading .typing-caret.blink {
  animation: blink-caret 1s step-end infinite;
}

@keyframes blink-caret {
  50% { opacity: 0; }
}

.typing-heading .loading-dots {
  display: none;
  position: absolute;
  bottom: 15px;
  right: 15px;
  width: 30px;
  height: 30px;
  background: #fff url('/wp-content/uploads/2025/09/kaamfu_icon_black.svg') no-repeat center center;
  background-size: 20px auto;
  animation: pulse-icon 1.2s infinite ease-in-out; 
	border-radius:30px;
}

@keyframes pulse-icon {
  0%   { transform: scale(0.8); opacity: 1; }
  50%  { transform: scale(1.0); opacity: 1; }
  100% { transform: scale(0.8); opacity: 1; }
}

@media (max-width: 1024px) {
  .chatgpt-bubble {
    width: 80vw;
    font-size: 21px;
    min-height: 92px;
  }
}