.chatbot-toggle {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 56px;
  height: 56px;
  border: none;
  border-radius: 50%;
  background: linear-gradient(to bottom left, rgb(1, 27, 68) , rgb(77, 109, 133) 100%);
  box-shadow: 0 4px 24px rgba(37, 99, 235, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: box-shadow 0.2s, transform 0.2s;
  z-index: 2000;
  font-size: 2rem;
  color: rgb(240, 244, 249);
  animation: chatbot-float 2.5s ease-in-out infinite;
}

.chatbot-toggle:hover {
  box-shadow: 0 8px 32px rgba(53, 118, 203, 0.8) ;
  transform: translateY(-6px) scale(1.08);
  background: rgba(53, 118, 203, 0.8) ;
  border: 1px solid rgba(1, 68, 33, 0.5);
}

@keyframes chatbot-float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.chatbot-container {
  position: fixed;
  bottom: 90px;
  right: 24px;
  width: 300px;
  max-height: 400px;
  background: rgb(240, 244, 249);
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  display: none;
  flex-direction: column;
  z-index: 10000;
}

.chatbot-header {
  font-family: Roboto;
  background-color: rgb(1, 38, 68);
  color: rgb(53, 118, 203);
  padding: 12px 16px;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.chatbot-close {
  background: none;
  border: none;
  color: rgb(53, 128, 203);
  font-size: 18px;
  cursor: pointer;
}

.chatbot-body {
  font-family: Roboto;
  padding: 16px;
  font-size: 14px;
  color: rgb(1, 30, 68);
  overflow-y: auto;
}

.chatbot-body .subtext {
  font-style: italic;
  margin-bottom: 12px;
  color: rgba(1, 29, 68, 0.5);
}

.chatbot-list {
  list-style: none;
  padding-left: 0;
}

.chatbot-list li {
  margin-bottom: 8px;
  color: rgb(53, 140, 203) ;
}



.chatbot-footer {
  display: flex;
  padding: 10px;
  border-top: 1px solid rgb(53, 135, 203);
  background: rgb(240, 244, 249)
}

#chatbot-input {
  flex: 1;
  padding: 8px 12px;
  border: 1px solid rgb(53, 103, 203);
  border-radius: 6px;
  font-size: 15px;
  outline: none;
}

#chatbot-send {
  margin-left: 8px;
  padding: 8px 18px;
  background: rgba(1, 30, 68, 0.8);
  color: rgb(240, 244, 249);
  border: none;
  border-radius: 6px;
  font-size: 15px;
  cursor: pointer;
  transition: background 0.2s;
}

#chatbot-send:hover {
  background:rgb(77, 107, 133);
}
