/* Chatbot konteineris */
#chatbot-container {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 360px;
  max-height: 90vh;
  background-color: white;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  border-radius: 20px;
  overflow: hidden;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  font-family: Arial, sans-serif;
}

/* Viršutinė juosta */
#chatbot-header {
  background: linear-gradient(to right, #ff6a00, #ee0979);
  color: white;
  padding: 12px 16px;
  font-size: 18px;
  font-weight: bold;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}

/* Pokalbio langas */
#chatbot-messages {
  flex-grow: 1;
  padding: 16px;
  overflow-y: auto;
}

/* Žinučių bendras stilius */
.chat-message {
  margin-bottom: 12px;
  padding: 10px 14px;
  border-radius: 16px;
  max-width: 80%;
  line-height: 1.4;
}

/* Vartotojo žinutė */
.chat-message.user {
  background-color: #e8f0fe;
  align-self: flex-end;
}

/* Bot žinutė */
.chat-message.bot {
  background-color: #f1f1f1;
  align-self: flex-start;
}

/* Įvesties laukas ir mygtukas */
#chatbot-input-container {
  display: flex;
  border-top: 1px solid #ccc;
}

#chatbot-input {
  flex-grow: 1;
  padding: 10px;
  border: none;
  border-bottom-left-radius: 20px;
  outline: none;
}

#chatbot-send {
  background-color: #ff6a00;
  border: none;
  color: white;
  padding: 10px 16px;
  cursor: pointer;
  border-bottom-right-radius: 20px;
}

#chatbot-send:hover {
  background-color: #e05500;
}

/* Toggle button - make it perfectly round */
#chatbot-toggle {
  position: fixed !important;
  bottom: 20px !important;
  right: 20px !important;
  width: 64px !important;
  height: 64px !important;
  background: linear-gradient(to right, #ff6a00, #ee0979) !important;
  color: white !important;
  border: none !important;
  border-radius: 50% !important;
  cursor: pointer !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3) !important;
  z-index: 9998 !important;
  font-size: 24px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: transform 0.2s ease !important;
}

#chatbot-toggle:hover {
  transform: scale(1.1) !important;
}

/* Alternative class selector for better compatibility */
.chat-launcher-button {
  position: fixed !important;
  bottom: 20px !important;
  right: 20px !important;
  width: 64px !important;
  height: 64px !important;
  background: linear-gradient(to right, #ff6a00, #ee0979) !important;
  color: white !important;
  border: none !important;
  border-radius: 50% !important;
  cursor: pointer !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3) !important;
  z-index: 9998 !important;
  font-size: 24px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: transform 0.2s ease !important;
}

.chat-launcher-button:hover {
  transform: scale(1.1) !important;
}

/* Mobilus dizainas */
@media screen and (max-width: 768px) {
  #chatbot-container {
    width: 90vw;
    right: 5vw;
    bottom: 10px;
  }
  
  #chatbot-toggle {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }
} 