@charset "UTF-8";
/* Floating chat button (toggle) */
.chat-window-toggle {
  background: #2C7BE5 !important;
  border-radius: 50% !important;
  padding: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
  cursor: pointer;
}

/* Chat window */
.chat-window {
  border-radius: 16px !important;
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
  max-width: 380px;
  width: 100%;
  font-family: 'Poppins', sans-serif !important;
}

/* Chat header */
.chat-header {
  background: linear-gradient(45deg, #2C7BE5, #1b5bbf) !important;
  color: #fff !important;
  border-radius: 16px 16px 0 0 !important;
  padding: 12px 16px;
  font-weight: 600;
}

.chat-header h1 {
  font-size: 16px !important;
  margin: 0;
  color: #fff !important;
}

.chat-header p {
  margin: 0;
  font-size: 13px;
  color: #e9ecf5 !important;
}

/* Messages */
.chat-message-from-user {
  background: #2C7BE5 !important;
  color: #fff !important;
  border-radius: 16px 16px 0 16px !important;
  padding: 8px 12px;
  font-size: 14px;
  max-width: 75%;
  margin-left: auto;
}

.chat-message-from-bot {
  background: #b4b4b442 !important;
  color: #222 !important;
  border-radius: 16px 16px 16px 0 !important;
  padding: 8px 12px;
  font-size: 14px;
  max-width: 75%;
  margin-right: auto;
}

/* Input area */
.chat-input textarea {
  border-radius: 20px !important;
  border: 1px solid #ddd !important;
  padding: 10px 14px !important;
  font-size: 14px;
  font-family: 'Poppins', sans-serif !important;
}

.chat-input-send-button {
  background: #2C7BE5 !important;
  color: #fff !important;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* 🔹 Responsive */
@media (max-width: 600px) {
  .chat-window {
    width: 100% !important;
    max-width: 100% !important;
    height: 100% !important;
    border-radius: 0 !important;
  }
  .chat-header {
    font-size: 14px !important;
    padding: 10px;
  }
  .chat-message-from-user,
  .chat-message-from-bot {
    font-size: 13px !important;
    padding: 6px 10px !important;
  }
}
:root{
    --chat--toggle--size: 50px;
}
.chat.toggle{
    size :10px
}
.chat-layout .chat-header {
    display: flex
;
    border-radius: 15px;
    flex-direction: column;
    justify-content: center;
    gap: 1em;
    height: var(--chat--header-height);
    padding: var(--chat--header--padding);
    background: #6d3bff;
    color: var(--chat--header--color);
    border-top: var(--chat--header--border-top);
    border-bottom: var(--chat--header--border-bottom);
    border-left: var(--chat--header--border-left);
    border-right: var(--chat--header--border-right);
}

.chat-layout .chat-footer{
  margin: 5;
  background: #fff;
  border-top: #fff;
}
.chat-inputs textarea[data-v-de5e7961] {
  margin-right: 4;
}
.chat-input textarea{
  border: 1px solid #ffffff !important;
}
/* .chat-powered-by{
  visibility: hidden;
} */