/**
 * Theme Name:     Hello Elementor Child
 * Author:         Elementor Team
 * Template:       hello-elementor
 * Text Domain:	   hello-elementor-child
 * Description:    Hello Elementor is a lightweight and minimalist WordPress theme that was built specifically to work seamlessly with the Elementor site builder plugin. The theme is free, open-source, and designed for users who want a flexible, easy-to-use, and customizable website. The theme, which is optimized for performance, provides a solid foundation for users to build their own unique designs using the Elementor drag-and-drop site builder. Its simplicity and flexibility make it a great choice for both beginners and experienced Web Creators.
 */
/* Chatbot Floating Button */
#chatbot-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #facc15; /* yellow */
  color: #000;
  border: none;
  padding: 12px 18px;
  border-radius: 50px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
  z-index: 9999;
}

#chatbot-button:hover {
  background: #eab308; /* darker yellow */
}

/* Chatbot Window */
#chatbot-box {
  position: fixed;
  bottom: 80px;
  right: 20px;
  width: 320px;
  height: 420px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  font-family: Arial, sans-serif;
  z-index: 9999;
}

/* Header */
#chatbot-header {
  background: #facc15; /* yellow */
  padding: 12px;
  font-weight: bold;
  font-size: 16px;
  text-align: center;
  color: #000;
  border-bottom: 1px solid #eee;
}

/* Messages */
#chatbot-messages {
  flex: 1;
  padding: 10px;
  overflow-y: auto;
  background: #f9f9f9;
}

.message {
  margin: 8px 0;
  padding: 10px 14px;
  border-radius: 12px;
  max-width: 80%;
  font-size: 14px;
  line-height: 1.4;
  clear: both;
}

.message.user {
  background: #facc15;
  color: #000;
  float: right;
  border-bottom-right-radius: 2px;
}

.message.bot {
  background: #e5e7eb;
  color: #111;
  float: left;
  border-bottom-left-radius: 2px;
}

/* Input area */
#chatbot-input-area {
  display: flex;
  border-top: 1px solid #ddd;
  padding: 8px;
  background: #fff;
}

#chatbot-input {
  flex: 1;
  border: none;
  padding: 10px;
  border-radius: 8px;
  font-size: 14px;
  background: #f3f4f6;
}

#chatbot-input:focus {
  outline: none;
  background: #fff;
  border: 1px solid #facc15;
}

#chatbot-send {
  margin-left: 8px;
  background: #facc15;
  border: none;
  border-radius: 8px;
  padding: 10px 14px;
  cursor: pointer;
  font-weight: bold;
  transition: 0.3s;
}

#chatbot-send:hover {
  background: #eab308;
}