body {
  font-family: Arial, sans-serif;
}

/* Toggle Button */
#chat-toggle {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #0A66C2;
  color: white;
  padding: 15px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 20px;
}

/* Chatbox */
#chatbox {
  display: none;
  position: fixed;
  bottom: 80px;
  right: 20px;
  width: 320px;
  height: 420px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0,0,0,0.2);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* Header */
#chat-header {
  background: #0A66C2;
  color: white;
  padding: 10px;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
}

/* Messages */
#messages {
  flex: 1;
  padding: 10px;
  overflow-y: auto;
  font-size: 14px;
}

/* Message bubbles */
.user-msg {
  text-align: right;
  margin: 5px 0;
}

.bot-msg {
  text-align: left;
  margin: 5px 0;
}

.user-msg span {
  background: #0A66C2;
  color: white;
  padding: 6px 10px;
  border-radius: 10px;
  display: inline-block;
}

.bot-msg span {
  background: #eee;
  padding: 6px 10px;
  border-radius: 10px;
  display: inline-block;
}

/* Suggestions */
#suggestions {
  padding: 5px;
  border-top: 1px solid #ddd;
  text-align: center;
}

#suggestions button {
  margin: 3px;
  padding: 5px 8px;
  font-size: 12px;
  cursor: pointer;
}

/* Input */
#input-area {
  display: flex;
  border-top: 1px solid #ddd;
}

#input {
  flex: 1;
  border: none;
  padding: 10px;
  outline: none;
}

#input-area button {
  background: #0A66C2;
  color: white;
  border: none;
  padding: 10px;
  cursor: pointer;
}


.bot-msg input {
  width: 90%;
  padding: 5px;
  margin: 5px 0;
}

.bot-msg button {
  background: #0A66C2;
  color: white;
  border: none;
  padding: 6px 10px;
  cursor: pointer;
}

#chat-header span{
    cursor: pointer !important;
}