/* --- Chatbot UI: merged all relevant styles into one file --- */

/* Main chatbot container and window styles (if needed, add here) */

/* Suggestion buttons (main options) */
.chatbot-suggestion-btn {
  background: linear-gradient(90deg, #ff7300 0%, #ffb347 100%);
  color: #fff;
  border: none;
  border-radius: 22px;
  padding: 0.5em 1.4em;
  margin: 0.3em 0.5em 0.3em 0;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(255, 115, 0, 0.08);
  transition: background 0.2s, box-shadow 0.2s, transform 0.1s;
}
.chatbot-suggestion-btn:hover, .chatbot-suggestion-btn:focus {
  background: linear-gradient(90deg, #ffb347 0%, #ff7300 100%);
  box-shadow: 0 4px 16px rgba(255, 115, 0, 0.18);
  transform: translateY(-2px) scale(1.04);
}

/* Category (second option) buttons */
.chatbot-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7em 1em;
  margin: 1.2em 0 0.7em 0;
  justify-content: flex-start;
}
.chatbot-category-btn {
  background: #fff;
  color: #ff7300;
  border: 2px solid #ff7300;
  border-radius: 22px;
  padding: 0.55em 1.6em;
  font-size: 1.08rem;
  font-weight: 700;
  cursor: pointer;
  margin: 0.2em 0.5em 0.2em 0;
  box-shadow: 0 2px 8px rgba(255, 115, 0, 0.10);
  transition: background 0.18s, color 0.18s, border 0.18s, box-shadow 0.18s;
  outline: none;
}
.chatbot-category-btn:hover, .chatbot-category-btn:focus {
  background: #ff7300;
  color: #fff;
  border: 2px solid #ff7300;
  box-shadow: 0 4px 16px rgba(255, 115, 0, 0.18);
}

/* New chat button (floating +) */
#new-chat-btn-container {
  position: absolute;
  top: 60px;
  bottom: 20px;
  right: 5px;
  z-index: 10;
  display: flex;
  align-items: center;
}
#start-new-chat-btn {
  background: #fff;
  color: #ff7300;
  border: 2px solid #ff7300;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  padding: 0;
  font-size: 0.5em;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(255, 115, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.18s, color 0.18s, border 0.18s;
}
#start-new-chat-btn:hover, #start-new-chat-btn:focus {
  background: #ff7300;
  color: #fff;
  border: 2px solid #ff7300;
}

/* Suggestion links and WhatsApp special style */
.chatbot-suggestion-link, .chatbot-link {
  color: #ff7300;
  font-weight: 600;
  text-decoration: underline;
  border-radius: 4px;
  padding: 0.1em 0.3em;
  transition: background 0.15s, color 0.15s;
  word-break: break-all;
}
.chatbot-suggestion-link:hover, .chatbot-link:hover {
  background: #fff3e0;
  color: #d35400;
  text-decoration: none;
}
.chatbot-link[href*="wa.me"] {
  background: #25d366;
  color: #fff !important;
  border-radius: 18px;
  padding: 0.3em 1.1em;
  font-weight: 700;
  display: inline-block;
  margin: 0.2em 0;
  text-decoration: none;
  transition: background 0.18s, color 0.18s;
}
.chatbot-link[href*="wa.me"]:hover {
  background: #128c7e;
  color: #fff !important;
}

/* More button (if used) */
.chatbot-more-btn {
  display: block;
  margin: 12px auto 0 auto;
  padding: 8px 18px;
  background: #f5f5f5;
  color: #333;
  border: 1px solid #bbb;
  border-radius: 20px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border 0.2s;
}
.chatbot-more-btn:hover {
  background: #e0e0e0;
  color: #007b8a;
  border-color: #007b8a;
}

/* Responsive tweaks */
@media (max-width: 600px) {
  .chatbot-suggestion-btn {
    font-size: 0.95rem;
    padding: 0.4em 1em;
  }
  .chatbot-new-chat-btn, #start-new-chat-btn {
    font-size: 0.95rem;
    padding: 0.25em 0.8em;
    width: 32px;
    height: 32px;
  }
  .chatbot-category-btn {
    font-size: 0.98rem;
    padding: 0.4em 1em;
  }
}
