#aspired-chatbot-bubble {
  position: fixed;
  right: 18px;
  bottom: 18px;
  border-radius: 999px;
  padding: 14px 18px;
  background: var(--aspired-color, #0ea5e9);
  color: #fff !important;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(0,0,0,.15);
  z-index: 99999;
  border: 0;
}

#aspired-chatbot-panel {
  position: fixed;
  right: 18px;
  bottom: 80px;
  width: 340px;
  max-width: 95vw;
  height: 480px;
  background: #fff !important;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0,0,0,.2) !important;
  display: none;
  flex-direction: column;
  overflow: hidden;
  z-index: 99999;
}

#aspired-chatbot-header {
  padding: 12px 14px;
  font-weight: 700;
  font-size: 20px;
  color: #fff !important;
  background: var(--aspired-color, #0ea5e9) !important;
}

#aspired-chatbot-messages {
  flex: 1;
  overflow: auto;
  padding: 12px;
  background: #f8fafc !important;
}

/* Stack input and buttons vertically */
#aspired-chatbot-input {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 10px;
  border-top: 1px solid #e5e7eb !important;
  background: #fff !important;
}

/* Input fits inside wrapper without overflow */
#aspired-chatbot-input input {
  flex: 1;
  width: 100%;
  border: 1px solid #e5e7eb !important;
  border-radius: 999px;
  padding: 10px 12px;
  font-size: 14px;
  box-sizing: border-box;
}

/* Button row (full width) */
.aspired-chatbot-buttons {
  display: flex;
  gap: 8px;
  width: 100%;
}

/* Equal-width buttons spanning the row */
.aspired-chatbot-buttons button {
  flex: 1;
  border: 0;
  border-radius: 999px;
  padding: 10px 0;
  font-weight: 600;
  cursor: pointer;
  color: #fff !important;
  text-align: center;
}

/* First = Send */
.aspired-chatbot-buttons button:first-child {
  background: var(--aspired-color, #0ea5e9) !important;
}

/* Second = Clear Chat */
.aspired-chatbot-buttons button:last-child {
  background: #f43f5e !important;
}

/* (Shared button styles without forcing background color) */
#aspired-chatbot-input {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 10px;
  border-top: 1px solid #e5e7eb !important;
  background: #fff !important;
  box-sizing: border-box;
}

.chat-row {
  margin: 8px 0;
  display: flex;

}
.chat-row.user {
  justify-content: flex-end;

}
.chat-bubble { 
  max-width: 78%; 
  padding: 10px 12px; 
  border-radius: 14px; 
  line-height: 1.35; 
  font-size: 16px;
}
.chat-row.user .chat-bubble { 
  background: #e2f2ff !important; 
  color: #000 !important; 
}
.chat-row.ai .chat-bubble   { 
  background: #fff !important; 
  color: #000 !important; 
  border: 1px solid #e5e7eb !important; 
}

/* Booking button styling */
#aspired-chatbot-messages .chat-row.ai .chat-bubble a {
  display: inline-block;
  font-size: 14px;
  padding: 6px 12px;
  border-radius: 20px;
  font-weight: 500;
  text-decoration: none;
  background: var(--aspired-color, #0ea5e9) !important;
  color: #fff !important;
}
