#chatbot-widget {
  position: fixed;
  bottom: 10px;
  right: 20px;
  width: 200px;
  font-family: Arial, sans-serif;
  z-index: 9999;
}

.chat-header {
  background: #e60026;
  color: white;
  padding: 10px;
  border-radius: 10px 10px 0 0;
  cursor: pointer;
  font-weight: bold;
  text-align: center;
}

.chat-body {
  display: none;
  background: #222;
  color: white;
  border: 1px solid #e60026;
  border-top: none;
  border-radius: 0 0 10px 10px;
  max-height: 300px;
  display: flex;
  flex-direction: column;
  overflow-y: auto;   /* ✅ allows scrolling */
  overscroll-behavior: contain; /* ✅ better behavior on mobile */
  scroll-behavior: smooth;
  touch-action: pan-y;
}


.chat-log {
  flex-grow: 1;
  padding: 10px;
  overflow-y: auto;
  font-size: 0.9rem;
}

.chat-log .bot {
  background: #333;
  padding: 5px 10px;
  border-radius: 10px;
  margin-bottom: 5px;
  max-width: 90%;
}

.chat-log .user {
  background: #e60026;
  padding: 5px 10px;
  border-radius: 10px;
  margin-bottom: 5px;
  align-self: flex-end;
  max-width: 90%;
  text-align: right;
}

#chat-input {
  padding: 10px;
  border: none;
  border-top: 1px solid #444;
  background: #111;
  color: white;
  width: 100%;
  box-sizing: border-box;
  border-radius: 0 0 10px 10px;
}
.flyer-button {
  margin-top: 6px;
  margin-bottom: 6px;
  padding: 6px 12px;
  background-color: #ff4081;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
  transition: background-color 0.3s ease;
}
.flyer-button:hover {
  background-color: #e73370;
}
