/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Jul 29 2025 | 15:20:05 */
#ai-chatbot-box {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 340px;
  background: #fafafa;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  padding: 1rem;
  display: block;
  z-index: 9998;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}
.ai-chat-area {
  max-height: 300px;
  overflow-y: auto;
  padding-bottom: 0.5rem;
}
.ai-chat-row {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.8rem;
}
.ai-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}
.ai-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ai-bubble {
  background: #fff;
  padding: 0.6rem 0.8rem;
  border-radius: 12px;
  font-size: 0.9rem;
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
  max-width: 75%;
}
.ai-bubble strong {
  font-weight: 600;
}
.ai-chat-row.user {
  justify-content: flex-end;
  flex-direction: row;
}
.ai-chat-row.user .ai-bubble {
  background: #e8f7ff;
  text-align: left;
  max-width: 65%;
  margin-left: auto;
}
.ai-chat-row.user .ai-avatar img {
  content: url('https://em-content.zobj.net/thumbs/240/apple/354/rocket_1f680.png');
}
.ai-input-row {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.5rem;
}
#ai-chat-input {
  flex: 1;
  padding: 0.65rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 0.9rem;
  box-sizing: border-box;
}
#ai-send-btn {
  background: #ee3d43;
  border: none;
  color: white;
  padding: 0.65rem 0.8rem;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
#ai-send-btn svg {
  width: 18px;
  height: 18px;
  fill: white;
}

