/* Chatbot-Container */
#chatbot-container {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 320px;
  max-height: 500px;
  background-color: #ffffff;
  border: 2px solid #060633;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  font-family: 'Helvetica Neue', sans-serif;
  display: flex;
  flex-direction: column;
  z-index: 1000;
}

/* Chatbot-Header */
#chatbot-header {
  background-color: #060633;
  color: #ffffff;
  padding: 12px;
  font-weight: bold;
  text-align: center;
}

/* Chatbot-Messages */
#chatbot-messages {
  flex: 1;
  padding: 10px;
  overflow-y: auto;
  font-size: 14px;
  color: #060633;
}

/* Chatbot-Input */
#chatbot-input {
  border: none;
  border-top: 1px solid #ccc;
  padding: 10px;
  font-size: 14px;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  outline: none;
}
