#chatbotFaq-widget {
  position: fixed;
  bottom: 80px;
  right: 20px;
  width: 350px;
  background: #f5f5f5;
  border-radius: 12px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  display: none;
   font-family: 'Panton';
  max-height: 80vh;
  overflow-y: auto;
  z-index: 9999;
}

.chatbotFaq-header {
  background: #0044cc;
  color: white;
  padding: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  font-weight: bold;
}

#chatbot-body {
  padding: 12px;
}

.chat-container {
  padding: 10px;
}

#chat-container {
  height: 100%; /* Make chat container take full height */
  display: flex;
  flex-direction: column;
}

.chat-message {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
  padding: 10px;
  border-radius: 10px;
  width: fit-content;
}

.bot-message {
  background-color: #e9ecef;
  justify-content: flex-start;
}

.user-message {
  background-color: #d1e0f1a1;
  color: black;
  justify-content: flex-end;
  margin-left: auto;
  align-items: flex-end;
}

.message-icon {
  width: 24px;
  height: 24px;
  margin-right: 8px;
  border-radius: 50%;
}

.message-text {
  font-size: 14px;
  margin-bottom: 5px;
}

.timestamp {
  font-size: 12px;
  color: #666;
  align-self: flex-end;
}

.chat-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
  width: 100%; /* Ensure full width */
}

.chat-option {
  padding: 8px 16px;
  border: none;
  background: #dae3ec;
  color: black;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1 1 calc(50% - 4px); /* Approximately 50% width per button, accounting for gap */
  min-width: 0; /* Allow shrinking if needed */
  box-sizing: border-box; /* Include padding in width calculation */
}

.chat-option:hover {
  background: #0044cc;
  color: white;
}

.chat-option i {
  font-size: 14px;
}

.chat-row {
  display: flex;
  flex-wrap: nowrap;
  gap: 8px;
}

input[type=text] {
  flex: 1;
  padding: 8px;
  border-radius: 6px;
  border: 1px solid #ccc;
}

button#submit-btn {
  background-color: #003366;
  color: white;
  padding: 8px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

button#submit-btn:hover {
  background-color: #0044cc;
}

button#submit-btn:focus {
  outline: 2px solid #0044cc;
}

.chat-button-icon {
    width: 100px;
    height: 150px;
    position: fixed;
    bottom: 10px;
    right: 10px;
}

#open-chat {
  border: none;
  padding: 0;
  cursor: pointer;
  position: fixed;
  bottom: 10px;
  right: 10px;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  font-size: 22px;
}

#chat-area {
  padding-top: 10px;
}

#conversation-container {
  flex: 1; /* Take remaining space */
  padding-top: 10px
}

.feedback-btn:not(:last-child) {
  margin-right: 10px;
}

.chat-option, .feedback-btn {
  font-family: 'Panton' !important;
}

#feedback-container{
  display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  font-family: 'Panton' !important;
}

#reset-btn{
  font-family: 'Panton' !important;
}