.qhost-chatbot-widget * {
  margin: 0 !important;
  padding: 0 !important;
  box-sizing: border-box !important;
  color: inherit !important;
  background: inherit !important;
}

.qhost-chatbot-widget {
  position: fixed !important;
  bottom: 20px !important;
  right: 20px !important;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
  z-index: 10000 !important;
  color: #333 !important;
  background: transparent !important;
}

.qhost-chatbot-chat-bar {
  background: linear-gradient(135deg, #F28E7E 0%, #ff9f8f 100%) !important;
  color: white !important;
  padding: 16px 24px !important;
  border-radius: 30px !important;
  cursor: pointer !important;
  box-shadow: 0 8px 32px rgba(242, 142, 126, 0.3) !important;
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
  user-select: none !important;
  backdrop-filter: blur(10px) !important;
}

.qhost-chatbot-chat-bar:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 12px 40px rgba(242, 142, 126, 0.4) !important;
  background: linear-gradient(135deg, #f07d6b 0%, #ff9580 100%) !important;
  color: white !important;
}

.qhost-chatbot-chat-bar.active {
  border-radius: 20px 20px 8px 8px !important;
  background: linear-gradient(135deg, #f07d6b 0%, #ff9580 100%) !important;
  color: white !important;
}

.qhost-chatbot-chat-text {
  font-weight: 600 !important;
  font-size: 16px !important;
  color: inherit !important;
  background: transparent !important;
}

.qhost-chatbot-toggle-icon {
  width: 20px !important;
  height: 20px !important;
  transition: transform 0.3s ease !important;
  color: inherit !important;
  background: transparent !important;
}

.qhost-chatbot-toggle-icon.rotated {
  transform: rotate(180deg) !important;
}

.qhost-chatbot-chat-overlay {
  position: absolute !important;
  bottom: 80px !important;
  right: 0 !important;
  width: 380px !important;
  height: 500px !important;
  background: white !important;
  border-radius: 20px !important;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15) !important;
  opacity: 0 !important;
  transform: translateY(20px) scale(0.95) !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
  pointer-events: none !important;
  overflow: hidden !important;
  color: #333 !important;
}

.qhost-chatbot-chat-overlay.open {
  opacity: 1 !important;
  transform: translateY(0) scale(1) !important;
  pointer-events: all !important;
}

.qhost-chatbot-chat-header {
  background: linear-gradient(135deg, #F28E7E 0%, #ff9f8f 100%) !important;
  color: white !important;
  padding: 20px !important;
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  position: relative !important;
  overflow: hidden !important;
}

.qhost-chatbot-chat-header::before {
  content: '' !important;
  position: absolute !important;
  top: 0 !important;
  left: -100% !important;
  width: 100% !important;
  height: 100% !important;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent) !important;
  animation: qhost-chatbot-shimmer 3s infinite !important;
}

@keyframes qhost-chatbot-shimmer {
  0% { left: -100%; }
  100% { left: 100%; }
}

.qhost-chatbot-header-info h3 {
  font-size: 18px !important;
  font-weight: 600 !important;
  margin-bottom: 2px !important;
  color: #fff !important;
  background: transparent !important;
}

.qhost-chatbot-header-info p {
  font-size: 14px !important;
  opacity: 0.9 !important;
  color: #fff !important;
  background: transparent !important;
}

.qhost-chatbot-status-indicator {
  width: 8px !important;
  height: 8px !important;
  background: #4ade80 !important;
  border-radius: 50% !important;
  animation: qhost-chatbot-pulse 2s infinite !important;
  margin-left: auto !important;
}

@keyframes qhost-chatbot-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.qhost-chatbot-chat-messages {
  height: 350px !important;
  overflow-y: auto !important;
  padding: 20px !important;
  background: #F7EDE2 !important;
  color: #333 !important;
}

.qhost-chatbot-chat-messages::-webkit-scrollbar {
  width: 4px !important;
}

.qhost-chatbot-chat-messages::-webkit-scrollbar-track {
  background: transparent !important;
}

.qhost-chatbot-chat-messages::-webkit-scrollbar-thumb {
  background: #F28E7E !important;
  border-radius: 2px !important;
}

.qhost-chatbot-message {
  margin-bottom: 16px !important;
  animation: qhost-chatbot-slideIn 0.3s ease-out !important;
  color: inherit !important;
  background: transparent !important;
}

@keyframes qhost-chatbot-slideIn {
  from {
      opacity: 0;
      transform: translateY(10px);
  }
  to {
      opacity: 1;
      transform: translateY(0);
  }
}

.qhost-chatbot-message-bubble {
  max-width: 80% !important;
  padding: 12px 16px !important;
  border-radius: 18px !important;
  font-size: 14px !important;
  line-height: 1.4 !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08) !important;
  color: inherit !important;
  background: inherit !important;
}

.qhost-chatbot-bot-message {
  display: flex !important;
  justify-content: flex-start !important;
  color: inherit !important;
  background: transparent !important;
}

.qhost-chatbot-bot-message .qhost-chatbot-message-bubble {
  background: white !important;
  color: #333 !important;
  border-bottom-left-radius: 6px !important;
}

.qhost-chatbot-user-message {
  display: flex !important;
  justify-content: flex-end !important;
  color: inherit !important;
  background: transparent !important;
}

.qhost-chatbot-user-message .qhost-chatbot-message-bubble {
  background: #F28E7E !important;
  color: white !important;
  border-bottom-right-radius: 6px !important;
}

.qhost-chatbot-typing-indicator {
  display: flex !important;
  align-items: center !important;
  gap: 6px !important;
  padding: 12px 16px !important;
  background: white !important;
  border-radius: 18px !important;
  border-bottom-left-radius: 6px !important;
  max-width: 80px !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08) !important;
  color: #333 !important;
}

.qhost-chatbot-typing-dot {
  width: 6px !important;
  height: 6px !important;
  background: #F28E7E !important;
  border-radius: 50% !important;
  animation: qhost-chatbot-typing 1.4s infinite ease-in-out !important;
}

.qhost-chatbot-typing-dot:nth-child(1) { animation-delay: -0.32s !important; }
.qhost-chatbot-typing-dot:nth-child(2) { animation-delay: -0.16s !important; }
.qhost-chatbot-typing-dot:nth-child(3) { animation-delay: 0s !important; }

@keyframes qhost-chatbot-typing {
  0%, 80%, 100% {
      transform: scale(0.8);
      opacity: 0.5;
  }
  40% {
      transform: scale(1);
      opacity: 1;
  }
}

.qhost-chatbot-chat-input {
  padding: 12px !important;
  background: white !important;
  border-top: 1px solid rgba(242, 142, 126, 0.1) !important;
  display: flex !important;
  gap: 12px !important;
  align-items: flex-end !important;
  color: #333 !important;
}

.qhost-chatbot-input-wrapper {
  flex: 1 !important;
  position: relative !important;
  color: inherit !important;
  background: transparent !important;
}

.qhost-chatbot-message-input {
  width: 100% !important;
  min-height: 40px !important;
  max-height: 100px !important;
  padding: 12px 45px 12px 16px !important;
  border: 2px solid #F7EDE2 !important;
  border-radius: 20px !important;
  font-size: 14px !important;
  font-family: inherit !important;
  resize: none !important;
  outline: none !important;
  transition: all 0.3s ease !important;
  background: #F7EDE2 !important;
  color: #333 !important;
}

.qhost-chatbot-message-input:focus {
  border-color: #F28E7E !important;
  background: white !important;
  box-shadow: 0 0 0 3px rgba(242, 142, 126, 0.1) !important;
  color: #333 !important;
}

.qhost-chatbot-message-input::placeholder {
  color: #999 !important;
  background: transparent !important;
}

.qhost-chatbot-send-button {
  position: absolute !important;
  right: 6px !important;
  bottom: 10px !important;
  width: 32px !important;
  height: 32px !important;
  border: none !important;
  border-radius: 50% !important;
  background: #F28E7E !important;
  color: white !important;
  cursor: pointer !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: all 0.3s ease !important;
  font-size: 16px !important;
}

.qhost-chatbot-send-button:hover:not(:disabled) {
  background: #f07d6b !important;
  transform: scale(1.1) !important;
  color: white !important;
}

.qhost-chatbot-send-button:disabled {
  opacity: 0.5 !important;
  cursor: not-allowed !important;
  color: white !important;
  background: #F28E7E !important;
}

.qhost-chatbot-welcome {
  text-align: center !important;
  padding: 40px 20px !important;
  color: #666 !important;
  background: transparent !important;
}

.qhost-chatbot-welcome-icon {
  font-size: 48px !important;
  margin-bottom: 16px !important;
  color: #F28E7E !important;
  background: transparent !important;
}

.qhost-chatbot-welcome h4 {
  font-size: 18px !important;
  color: #F28E7E !important;
  margin-bottom: 8px !important;
  background: transparent !important;
}

.qhost-chatbot-welcome p {
  font-size: 14px !important;
  line-height: 1.5 !important;
  color: #666 !important;
  background: transparent !important;
}

@media (max-width: 480px) {
  .qhost-chatbot-widget {
    bottom: 10px !important;
    right: 30px !important;
    left: 40px !important;
  }

  .qhost-chatbot-chat-bar {
    margin: 0 auto !important;
    max-width: calc(100vw - 20px) !important;
  }  

  .qhost-chatbot-chat-overlay {
    width: calc(100vw - 60px) !important;
    height: calc(100vh - 120px) !important;
    bottom: 70px !important;
    right: 0 !important;
    left: 0 !important;
    max-width: none !important;
    background: white !important;
    color: #333 !important;
  }

  .qhost-chatbot-chat-messages {
    height: calc(100vh - 280px) !important;
    background: #F7EDE2 !important;
    color: #333 !important;
  }

  .qhost-chatbot-chat-bar {
    padding: 12px 20px !important;
    font-size: 14px !important;
  }

  .qhost-chatbot-chat-text {
    font-size: 14px !important;
  }
}

.qhost-chatbot-fade-in {
  animation: qhost-chatbot-fadeIn 0.5s ease-out !important;
}

@keyframes qhost-chatbot-fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}