/* Chatbot container */
#chatbot-container {
  position: fixed;
  bottom: 20px;
  right: 20px;
  font-family: 'PT Sans', sans-serif;
  z-index: 10000;
  max-width: 360px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
  border-radius: 15px;
  overflow: hidden;
  font-size: 15px;
  transition: transform 0.3s ease;
  /* background-color: transparent !important; */
}
/* Chatbot button */
#chatbot-button {
  background-color: #ff6000;
  color: white;
  border: none;
  border-radius: 50%;
  width: 65px;
  height: 65px;
  cursor: pointer;
  font-size: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 12px rgba(0,0,0,0.3);
  transition: background-color 0.3s ease, transform 0.3s ease;
  user-select: none;
  background-image: none !important;
  background-repeat: none !important;
}
#chatbot-button:hover {
  background-color: #ff6000;
  transform: none;
  box-shadow: 0 0 8px 3px rgba(255, 96, 0, 0.7);
}
/* Chat window */
#chatbot-window {
  display: none;
  flex-direction: column;
  /* background-color: white; */
  color: white;
  height: 420px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0,0,0,0.5);
  animation: fadeInScale 0.3s ease forwards;
}
@keyframes fadeInScale {
  0% {
    opacity: 0;
    transform: scale(0.9);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
/* Chat header */
#chatbot-header {
  background-color: #ff6000;
  padding: 12px 15px;
  font-weight: 700;
  font-size: 18px;
  text-align: center;
  font-family: 'Lato', sans-serif;
  letter-spacing: 1px;
  user-select: none;
  box-shadow: 0 2px 6px rgba(0,0,0,0.3);
}
/* Chat messages area */
#chatbot-messages {
  flex: 1;
  padding: 15px;
  overflow-y: auto;
  font-size: 15px;
  font-family: 'Lato', sans-serif;
  line-height: 1.4;
  background-color: #1a1a1a;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
/* Chat input area */
#chatbot-input-area {
  display: flex;
  border-top: 1px solid #444;
  background-color: #333;
  padding: 10px;
}
#chatbot-input {
  flex: 1;
  border: none;
  padding: 12px 15px;
  font-size: 15px;
  color: white;
  background-color: #333;
  border-radius: 25px 0 0 25px;
  font-family: 'Lato', sans-serif;
  transition: background-color 0.3s ease;
}
#chatbot-input:focus {
  outline: none;
  background-color: #444;
}
#chatbot-send {
  background-color: #ff6000;
  border: none;
  color: white;
  padding: 0 20px;
  cursor: pointer;
  font-weight: 700;
  font-size: 15px;
  border-radius: 0 25px 25px 0;
  transition: background-color 0.3s ease;
  user-select: none;
}
#chatbot-send:hover {
  background-color: #ff6000;
  box-shadow: 0 0 8px 3px rgba(255, 96, 0, 0.7);
}
/* Message styles */
.chatbot-message {
  max-width: 80%;
  padding: 10px 15px;
  border-radius: 20px;
  line-height: 1.4;
  word-wrap: break-word;
  box-shadow: 0 2px 6px rgba(0,0,0,0.3);
  font-family: 'Lato', sans-serif;
  font-size: 15px;
}
.chatbot-message.user {
  align-self: flex-end;
  background-color: #ff6000;
  color: white;
  border-bottom-right-radius: 5px;
}
.chatbot-message.bot {
  align-self: flex-start;
  background-color: #444;
  color: #ddd;
  border-bottom-left-radius: 5px;
}
