/* ==========================================================================
   TWS SALES AGENT — EMBEDDABLE CHAT WIDGET STYLES
   Prefix: tws-chat-* (Fully Scoped, Zero Host Contamination)
   Design System: Plus Jakarta Sans, Gradient #7C3AED to #4F46E5, Dark Slate #0F172A / #1E293B
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
  --tws-chat-primary: #7C3AED;
  --tws-chat-primary-dark: #6D28D9;
  --tws-chat-secondary: #4F46E5;
  --tws-chat-secondary-dark: #4338CA;
  --tws-chat-gradient: linear-gradient(135deg, #7C3AED 0%, #4F46E5 100%);
  --tws-chat-gradient-hover: linear-gradient(135deg, #8B5CF6 0%, #6366F1 100%);
  --tws-chat-bg-dark: #0F172A;
  --tws-chat-bg-card: #1E293B;
  --tws-chat-bg-surface: #1E293B;
  --tws-chat-bg-input: #0B1120;
  --tws-chat-border: #334155;
  --tws-chat-border-focus: #7C3AED;
  --tws-chat-text-primary: #F8FAFC;
  --tws-chat-text-secondary: #94A3B8;
  --tws-chat-text-muted: #64748B;
  --tws-chat-whatsapp: #25D366;
  --tws-chat-whatsapp-hover: #20BD5A;
  --tws-chat-whatsapp-dark: #128C7E;
  --tws-chat-danger: #EF4444;
  --tws-chat-success: #10B981;
  --tws-chat-font: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --tws-chat-shadow-lg: 0 20px 35px -5px rgba(0, 0, 0, 0.5), 0 10px 15px -5px rgba(0, 0, 0, 0.3);
  --tws-chat-shadow-glow: 0 0 25px rgba(124, 58, 237, 0.45);
  --tws-chat-radius: 16px;
  --tws-chat-z-index: 999990;
}

/* Reset for TWS Chat container hierarchy */
.tws-chat-widget-root,
.tws-chat-widget-root * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: var(--tws-chat-font);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Base root container */
.tws-chat-widget-root {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: var(--tws-chat-z-index);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

/* ==========================================================================
   1. LAUNCHER BADGE (AVATAR & PULSE GLOW)
   ========================================================================== */
.tws-chat-launcher {
  position: relative;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: var(--tws-chat-gradient);
  border: 2px solid rgba(255, 255, 255, 0.2);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px -4px rgba(124, 58, 237, 0.55), 0 4px 12px -2px rgba(79, 70, 229, 0.45);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  outline: none;
  user-select: none;
}

.tws-chat-launcher:hover {
  transform: scale(1.08) translateY(-2px);
  box-shadow: 0 12px 30px -4px rgba(124, 58, 237, 0.7), var(--tws-chat-shadow-glow);
}

.tws-chat-launcher:active {
  transform: scale(0.96);
}

/* Pulsing ambient aura */
.tws-chat-launcher-pulse {
  position: absolute;
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  border-radius: 50%;
  background: var(--tws-chat-gradient);
  opacity: 0.6;
  z-index: -1;
  animation: tws-chat-glow-pulse 2.4s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes tws-chat-glow-pulse {
  0% {
    transform: scale(1);
    opacity: 0.65;
  }
  50% {
    transform: scale(1.22);
    opacity: 0.15;
  }
  100% {
    transform: scale(1.35);
    opacity: 0;
  }
}

.tws-chat-launcher-icon {
  width: 32px;
  height: 32px;
  fill: #FFFFFF;
  transition: transform 0.3s ease, opacity 0.2s ease;
}

.tws-chat-launcher-icon-close {
  display: none;
  width: 26px;
  height: 26px;
  fill: #FFFFFF;
}

.tws-chat-widget-open .tws-chat-launcher-icon-open {
  display: none;
}

.tws-chat-widget-open .tws-chat-launcher-icon-close {
  display: block;
}

.tws-chat-launcher-unread {
  position: absolute;
  top: -3px;
  right: -3px;
  background: var(--tws-chat-danger);
  color: #FFFFFF;
  font-size: 11px;
  font-weight: 800;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--tws-chat-bg-dark);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.4);
  animation: tws-chat-badge-pop 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes tws-chat-badge-pop {
  0% { transform: scale(0); }
  100% { transform: scale(1); }
}

/* ==========================================================================
   2. EXPANDABLE CHAT WINDOW
   ========================================================================== */
.tws-chat-window {
  position: absolute;
  bottom: 78px;
  right: 0;
  width: 385px;
  max-width: calc(100vw - 32px);
  height: 630px;
  max-height: calc(100vh - 110px);
  background: var(--tws-chat-bg-dark);
  border: 1px solid var(--tws-chat-border);
  border-radius: var(--tws-chat-radius);
  box-shadow: var(--tws-chat-shadow-lg), var(--tws-chat-shadow-glow);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px) scale(0.95);
  transform-origin: bottom right;
  transition: opacity 0.28s ease, transform 0.28s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.28s;
  z-index: calc(var(--tws-chat-z-index) + 5);
}

.tws-chat-widget-open .tws-chat-window {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

/* ==========================================================================
   3. HEADER AREA
   ========================================================================== */
.tws-chat-header {
  background: var(--tws-chat-gradient);
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  color: #FFFFFF;
  position: relative;
  flex-shrink: 0;
}

.tws-chat-header-profile {
  display: flex;
  align-items: center;
  gap: 12px;
}

.tws-chat-avatar-wrapper {
  position: relative;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  border: 2px solid rgba(255, 255, 255, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.tws-chat-avatar-icon {
  width: 24px;
  height: 24px;
  fill: #FFFFFF;
}

.tws-chat-status-indicator {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--tws-chat-whatsapp);
  border: 2px solid var(--tws-chat-secondary-dark);
}

.tws-chat-header-info {
  display: flex;
  flex-direction: column;
}

.tws-chat-header-title {
  font-size: 14.5px;
  font-weight: 700;
  line-height: 1.2;
  color: #FFFFFF;
  letter-spacing: -0.01em;
}

.tws-chat-header-subtitle {
  font-size: 11.5px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.82);
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 2px;
}

.tws-chat-status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--tws-chat-whatsapp);
  display: inline-block;
  box-shadow: 0 0 6px var(--tws-chat-whatsapp);
}

.tws-chat-header-actions {
  display: flex;
  align-items: center;
  gap: 6px;
}

.tws-chat-btn-icon {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #FFFFFF;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  outline: none;
}

.tws-chat-btn-icon:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-1px);
}

.tws-chat-btn-icon svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

/* ==========================================================================
   4. PERMANENT WHATSAPP HANDOVER BANNER
   ========================================================================== */
.tws-chat-whatsapp-banner {
  background: linear-gradient(90deg, #128C7E 0%, #25D366 100%);
  padding: 8px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #FFFFFF;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  transition: all 0.2s ease;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  flex-shrink: 0;
}

.tws-chat-whatsapp-banner:hover {
  background: linear-gradient(90deg, #0F7367 0%, #20BD5A 100%);
  filter: brightness(1.05);
}

.tws-chat-whatsapp-banner-left {
  display: flex;
  align-items: center;
  gap: 8px;
}

.tws-chat-whatsapp-banner svg {
  width: 17px;
  height: 17px;
  fill: #FFFFFF;
  flex-shrink: 0;
}

.tws-chat-whatsapp-banner-right {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  background: rgba(0, 0, 0, 0.2);
  padding: 3px 8px;
  border-radius: 12px;
}

/* ==========================================================================
   5. MESSAGES CONTAINER & BUBBLES
   ========================================================================== */
.tws-chat-body {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: #0B1120;
  scroll-behavior: smooth;
}

.tws-chat-body::-webkit-scrollbar {
  width: 5px;
}

.tws-chat-body::-webkit-scrollbar-track {
  background: transparent;
}

.tws-chat-body::-webkit-scrollbar-thumb {
  background: var(--tws-chat-border);
  border-radius: 10px;
}

.tws-chat-message-row {
  display: flex;
  flex-direction: column;
  max-width: 86%;
  animation: tws-chat-msg-fade 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes tws-chat-msg-fade {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.tws-chat-message-row.tws-chat-msg-consultant {
  align-self: flex-start;
}

.tws-chat-message-row.tws-chat-msg-user {
  align-self: flex-end;
}

.tws-chat-msg-header {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 4px;
  font-size: 11px;
  font-weight: 600;
  color: var(--tws-chat-text-muted);
}

.tws-chat-msg-user .tws-chat-msg-header {
  justify-content: flex-end;
}

.tws-chat-bubble {
  padding: 12px 14px;
  font-size: 13.5px;
  line-height: 1.5;
  word-break: break-word;
  position: relative;
}

/* Consultant bubble: dark slate card with subtle border */
.tws-chat-msg-consultant .tws-chat-bubble {
  background: var(--tws-chat-bg-card);
  color: var(--tws-chat-text-primary);
  border: 1px solid var(--tws-chat-border);
  border-radius: 16px 16px 16px 4px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

/* User bubble: indigo / purple gradient */
.tws-chat-msg-user .tws-chat-bubble {
  background: var(--tws-chat-gradient);
  color: #FFFFFF;
  border-radius: 16px 16px 4px 16px;
  box-shadow: 0 4px 12px rgba(124, 58, 237, 0.3);
}

/* Message Markdown / formatting styles */
.tws-chat-bubble p {
  margin-bottom: 8px;
}

.tws-chat-bubble p:last-child {
  margin-bottom: 0;
}

.tws-chat-bubble strong {
  font-weight: 700;
  color: #FFFFFF;
}

.tws-chat-bubble ul,
.tws-chat-bubble ol {
  padding-left: 18px;
  margin: 6px 0;
}

.tws-chat-bubble li {
  margin-bottom: 4px;
}

.tws-chat-bubble a {
  color: #A78BFA;
  text-decoration: underline;
  word-break: break-all;
}

.tws-chat-bubble a:hover {
  color: #C4B5FD;
}

.tws-chat-time {
  font-size: 10px;
  color: var(--tws-chat-text-muted);
  margin-top: 3px;
  align-self: flex-start;
}

.tws-chat-msg-user .tws-chat-time {
  align-self: flex-end;
}

/* Inline WhatsApp call to action button inside message */
.tws-chat-inline-wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 8px;
  background: var(--tws-chat-whatsapp);
  color: #FFFFFF;
  font-size: 12px;
  font-weight: 700;
  padding: 8px 14px;
  border-radius: 8px;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(37, 211, 102, 0.3);
  transition: all 0.2s ease;
}

.tws-chat-inline-wa-btn:hover {
  background: var(--tws-chat-whatsapp-hover);
  transform: translateY(-1px);
}

.tws-chat-inline-wa-btn svg {
  width: 15px;
  height: 15px;
  fill: #FFFFFF;
}

/* ==========================================================================
   6. TYPING INDICATOR (BOUNCING DOTS)
   ========================================================================== */
.tws-chat-typing-indicator {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 10px 14px;
  background: var(--tws-chat-bg-card);
  border: 1px solid var(--tws-chat-border);
  border-radius: 14px 14px 14px 4px;
  width: fit-content;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.tws-chat-typing-dot {
  width: 7px;
  height: 7px;
  background: var(--tws-chat-text-muted);
  border-radius: 50%;
  animation: tws-chat-bounce 1.4s infinite ease-in-out both;
}

.tws-chat-typing-dot:nth-child(1) { animation-delay: -0.32s; }
.tws-chat-typing-dot:nth-child(2) { animation-delay: -0.16s; }
.tws-chat-typing-dot:nth-child(3) { animation-delay: 0s; }

@keyframes tws-chat-bounce {
  0%, 80%, 100% {
    transform: scale(0);
  }
  40% {
    transform: scale(1);
    background: var(--tws-chat-primary);
  }
}

/* ==========================================================================
   7. QUICK CHIPS (INTERACTIVE PILLS)
   ========================================================================== */
.tws-chat-chips-area {
  padding: 8px 12px;
  background: var(--tws-chat-bg-dark);
  border-top: 1px solid var(--tws-chat-border);
  overflow-x: auto;
  white-space: nowrap;
  display: flex;
  gap: 8px;
  scrollbar-width: none;
  -ms-overflow-style: none;
  flex-shrink: 0;
}

.tws-chat-chips-area::-webkit-scrollbar {
  display: none;
}

.tws-chat-chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(30, 41, 59, 0.9);
  color: #E2E8F0;
  border: 1px solid rgba(124, 58, 237, 0.35);
  font-size: 11.5px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
  user-select: none;
}

.tws-chat-chip:hover {
  background: var(--tws-chat-gradient);
  border-color: transparent;
  color: #FFFFFF;
  transform: translateY(-1px);
  box-shadow: 0 4px 10px rgba(124, 58, 237, 0.35);
}

.tws-chat-chip-highlight {
  border-color: var(--tws-chat-whatsapp);
  color: #86EFAC;
}

.tws-chat-chip-highlight:hover {
  background: linear-gradient(135deg, #128C7E 0%, #25D366 100%);
  color: #FFFFFF;
}

/* ==========================================================================
   8. INPUT & CONTROLS
   ========================================================================== */
.tws-chat-footer {
  background: var(--tws-chat-bg-card);
  padding: 10px 12px;
  border-top: 1px solid var(--tws-chat-border);
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.tws-chat-input-wrapper {
  flex: 1;
  position: relative;
  display: flex;
  align-items: center;
}

.tws-chat-input {
  width: 100%;
  background: var(--tws-chat-bg-input);
  border: 1px solid var(--tws-chat-border);
  border-radius: 22px;
  padding: 9px 16px;
  font-size: 13.5px;
  color: var(--tws-chat-text-primary);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.tws-chat-input::placeholder {
  color: var(--tws-chat-text-muted);
  font-size: 12.5px;
}

.tws-chat-input:focus {
  border-color: var(--tws-chat-primary);
  box-shadow: 0 0 0 2px rgba(124, 58, 237, 0.25);
}

.tws-chat-send-btn {
  background: var(--tws-chat-gradient);
  border: none;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #FFFFFF;
  box-shadow: 0 4px 10px rgba(124, 58, 237, 0.4);
  transition: all 0.2s ease;
  flex-shrink: 0;
  outline: none;
}

.tws-chat-send-btn:hover:not(:disabled) {
  transform: scale(1.05);
  box-shadow: 0 6px 14px rgba(124, 58, 237, 0.55);
}

.tws-chat-send-btn:active:not(:disabled) {
  transform: scale(0.95);
}

.tws-chat-send-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  filter: grayscale(0.5);
}

.tws-chat-send-btn svg {
  width: 17px;
  height: 17px;
  fill: currentColor;
  transform: translateX(1px);
}

/* ==========================================================================
   9. LEAD QUALIFICATION MODAL / FORM
   ========================================================================== */
.tws-chat-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(15, 23, 42, 0.88);
  backdrop-filter: blur(4px);
  z-index: 50;
  display: flex;
  flex-direction: column;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.24s ease;
  overflow-y: auto;
}

.tws-chat-modal-overlay.tws-chat-modal-open {
  opacity: 1;
  pointer-events: auto;
}

.tws-chat-lead-card {
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: var(--tws-chat-text-primary);
}

.tws-chat-lead-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  border-bottom: 1px solid var(--tws-chat-border);
  padding-bottom: 10px;
}

.tws-chat-lead-badge {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--tws-chat-primary);
  letter-spacing: 0.05em;
}

.tws-chat-lead-title {
  font-size: 15px;
  font-weight: 700;
  color: #FFFFFF;
  margin-top: 2px;
}

.tws-chat-lead-desc {
  font-size: 12px;
  color: var(--tws-chat-text-secondary);
  line-height: 1.4;
}

.tws-chat-form-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.tws-chat-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.tws-chat-label {
  font-size: 11.5px;
  font-weight: 600;
  color: var(--tws-chat-text-secondary);
}

.tws-chat-label span {
  color: var(--tws-chat-danger);
}

.tws-chat-form-control {
  background: var(--tws-chat-bg-input);
  border: 1px solid var(--tws-chat-border);
  border-radius: 8px;
  padding: 8px 10px;
  font-size: 12.5px;
  color: var(--tws-chat-text-primary);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.tws-chat-form-control:focus {
  border-color: var(--tws-chat-primary);
  box-shadow: 0 0 0 2px rgba(124, 58, 237, 0.2);
}

.tws-chat-form-control.tws-chat-input-error {
  border-color: var(--tws-chat-danger);
  background: rgba(239, 68, 68, 0.05);
}

.tws-chat-field-error {
  font-size: 10.5px;
  color: var(--tws-chat-danger);
  display: none;
  margin-top: 2px;
}

.tws-chat-field-error.tws-chat-visible {
  display: block;
}

.tws-chat-submit-btn {
  background: var(--tws-chat-gradient);
  color: #FFFFFF;
  border: none;
  border-radius: 10px;
  padding: 10px 16px;
  font-size: 13.5px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 4px 12px rgba(124, 58, 237, 0.4);
  transition: all 0.2s ease;
  margin-top: 4px;
}

.tws-chat-submit-btn:hover:not(:disabled) {
  background: var(--tws-chat-gradient-hover);
  transform: translateY(-1px);
}

.tws-chat-submit-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* Spinner inside button */
.tws-chat-spinner {
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: #FFFFFF;
  border-radius: 50%;
  animation: tws-chat-spin 0.8s linear infinite;
  display: none;
}

.tws-chat-loading .tws-chat-spinner {
  display: inline-block;
}

@keyframes tws-chat-spin {
  to { transform: rotate(360deg); }
}

/* Success Card */
.tws-chat-lead-success {
  text-align: center;
  padding: 24px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.tws-chat-success-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.15);
  border: 2px solid var(--tws-chat-success);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--tws-chat-success);
}

.tws-chat-success-icon svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
}

/* ==========================================================================
   10. RESPONSIVE ADAPTATION (MOBILE < 480PX)
   ========================================================================== */
@media (max-width: 480px) {
  .tws-chat-widget-root {
    bottom: 16px;
    right: 16px;
  }

  .tws-chat-window {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    max-width: 100vw;
    max-height: 100vh;
    border-radius: 0;
    border: none;
    z-index: calc(var(--tws-chat-z-index) + 10);
  }

  .tws-chat-header {
    padding: 12px 14px;
    border-radius: 0;
  }

  .tws-chat-body {
    padding: 12px;
  }

  .tws-chat-message-row {
    max-width: 90%;
  }

  .tws-chat-footer {
    padding: 10px;
    padding-bottom: max(10px, env(safe-area-inset-bottom));
  }

  .tws-chat-form-row {
    grid-template-columns: 1fr;
  }
}
