#chatbot-toggle {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  background-color: #0084ff;
  color: white;
  font-size: 28px;
  border-radius: 50%;
  text-align: center;
  line-height: 60px;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  z-index: 1000;
}

#chatbot-box {
  position: fixed;
  bottom: 90px;
  right: 20px;
  width: 320px;
  height: 400px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  display: none;
  flex-direction: column;
  overflow: hidden;
  z-index: 1000;
  font-family: sans-serif;
}
#chatbot-messages a {
    color:hsl(0deg 64.54% 49.77%)!important;
    text-decoration: none;
}
#chatbot-messages a:hover {
    color:hsl(55.38deg 86.35% 43.52%)!important;
    text-decoration: none;
}
#chatbot-header {
  background-color: #0084ff;
  color: white;
  padding: 10px;
  font-weight: bold;
  position: relative;
}

#chatbot-close {
  position: absolute;
  right: 10px;
  top: 8px;
  cursor: pointer;
}

#chatbot-messages {
  flex: 1;
  padding: 10px;
  overflow-y: auto;
  max-height: 280px;
  color: #000000;
}

#chatbot-input {
  display: flex;
  border-top: 1px solid #ccc;
}

#chatbot-input input {
  flex: 1;
  border: none;
  padding: 10px;
}

#chatbot-input button {
  background-color: #0084ff;
  color: white;
  border: none;
  padding: 10px 15px;
  cursor: pointer;
}
