/* ═══════════════════════════════════════
   AURA CHATBOT — EXACT SCREENSHOT DESIGN
   Premium Dark Theme & Interactive UI
═══════════════════════════════════════ */

:root {
  --aura-primary: #1a5fa8;
  --aura-bg: #0b2240;
  --aura-bg-dark: #081a30;
  --aura-text: #ffffff;
  --aura-bot-msg: #152b4a;
  --aura-user-msg: #1a5fa8;
  --aura-accent: #ffb400; /* Yellow for send button */
  --aura-fab-color: #ff4b2b; /* Orange-Red for FAB */
  --aura-border: rgba(255, 255, 255, 0.1);
}

/* ── LIGHT THEME OVERRIDES (Exact Deployed Match) ── */
.light-theme {
  --aura-bg: #f8fafc;
  --aura-bot-msg: #ffffff;
  --aura-text: #1e293b;
  --aura-border: #e2e8f0;
}

/* Sidebar: ALWAYS DARK (as seen in Image 2) */
.chat-page.light-theme .chat-sidebar {
  background: #0b1e3b !important;
  color: white !important;
  border-right: none !important;
}

.chat-page.light-theme .sidebar-btn {
  color: rgba(255,255,255,0.7) !important;
}

.chat-page.light-theme .sidebar-btn:hover {
  background: rgba(255,255,255,0.05) !important;
  color: white !important;
}

/* Header: Theme Aware */
.full-page-chatbot.light-theme .chat-header {
  background: var(--aura-bot-msg) !important;
  color: var(--aura-text) !important;
  border-bottom: 1px solid var(--aura-border) !important;
  backdrop-filter: blur(10px) !important;
}

.full-page-chatbot.light-theme .chat-header div,
.full-page-chatbot.light-theme .chat-header span {
  color: #1e293b !important;
}

/* Chat Messages Area */
.full-page-chatbot.light-theme .chat-messages {
  background: var(--aura-bg) !important;
}

/* Welcome Banner: DARK BLUE (as seen in Image 2) */
.light-theme .welcome-banner {
  background: #0b2240 !important;
  color: white !important;
  border-radius: 20px !important;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1) !important;
}

/* Input Area */
.full-page-chatbot.light-theme .chat-input-area {
  background: var(--aura-bg) !important;
  padding: 20px 45px !important;
  border-top: 1px solid var(--aura-border) !important;
}

.full-page-chatbot.light-theme .chat-input {
  background: var(--aura-bot-msg) !important;
  color: var(--aura-text) !important;
  border: 1px solid var(--aura-border) !important;
  border-radius: 30px !important;
  padding: 15px 25px !important;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1) !important;
}

.full-page-chatbot.light-theme .chat-input::placeholder {
  color: #94a3b8 !important;
}

/* Global Light Theme Input Fix */
.light-theme input,
.light-theme textarea,
.light-theme .chat-input,
.light-theme .w-textarea {
  color: #1e293b !important;
  -webkit-text-fill-color: #1e293b !important; /* Some browsers need this */
}

#aura-widget.light-theme .msg.bot,
.full-page-chatbot.light-theme .msg.bot {
  background: #ffffff !important;
  color: #1e293b !important;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05) !important;
}

/* Force Light Theme Text Colors */
.light-theme .msg.bot strong,
.light-theme .msg.bot b {
  color: #0b2240 !important;
  font-weight: 700 !important;
}

.light-theme .msg.bot a {
  color: #1a5fa8 !important;
  text-decoration: underline !important;
  font-weight: 600 !important;
}

.light-theme .msg.bot ul, 
.light-theme .msg.bot ol {
  color: #1e293b !important;
}

.light-theme .msg.bot li {
  color: #1e293b !important;
}

.light-theme .msg.bot i {
  color: #1a5fa8 !important;
}

.light-theme .welcome-banner p {
  color: rgba(255,255,255,0.7) !important;
}

/* Suggestion Chips in Light Mode */
.light-theme .suggestion-chip {
  background: var(--aura-bot-msg) !important;
  color: var(--aura-primary) !important;
  border: 1px solid var(--aura-border) !important;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1) !important;
  opacity: 1 !important;
  display: inline-flex !important;
}

.light-theme .suggestion-chip i {
  color: #1a5fa8 !important; /* Force icons to be blue too in light mode */
}

.light-theme .suggestion-chip:hover {
  background: #1a5fa8 !important;
  color: #ffffff !important;
  border-color: #1a5fa8 !important;
}

.light-theme .suggestion-chip:hover i {
  color: #ffffff !important;
}

/* Input Placeholder in Light Mode */
.light-theme .chat-input::placeholder,
.light-theme .w-textarea::placeholder {
  color: rgba(30, 41, 59, 0.4) !important;
}

/* Toggle Button Style */
.theme-local-toggle {
  width: 40px !important;
  height: 40px !important;
  border-radius: 50% !important;
  background: var(--aura-bot-msg) !important;
  color: var(--aura-text) !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  border: 1px solid var(--aura-border) !important;
  cursor: pointer;
  transition: all 0.3s ease;
}

.theme-local-toggle:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.15);
}

/* Sidebar Light Theme */
.chat-page.light-theme .chat-sidebar {
  background: var(--aura-bot-msg);
  border-right: 1px solid var(--aura-border);
  color: var(--aura-text);
}

.chat-page.light-theme .sidebar-btn {
  color: #475569;
}

.chat-page.light-theme .sidebar-btn:hover {
  background: #f1f5f9;
  color: #1a5fa8;
}

.chat-page.light-theme .sidebar-label {
  color: #94a3b8;
}

/* ── FAB & LABEL ── */
.aura-fab-container {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 10001;
  cursor: grab;
}

.aura-fab-label {
  background: #0b2240;
  color: white;
  padding: 10px 22px;
  border-radius: 30px;
  font-size: 0.88rem;
  font-weight: 600;
  box-shadow: 0 8px 25px rgba(0,0,0,0.4);
  white-space: nowrap;
  border: 1.5px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  transform-origin: right center;
}

.aura-fab-container:hover .aura-fab-label {
  transform: scale(1.05);
  background: rgba(11, 34, 64, 0.95);
  border-color: var(--gold);
}

#aura-fab {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--aura-primary);
  border: 2px solid rgba(255,255,255,0.1);
  color: white;
  box-shadow: 0 10px 30px rgba(26, 95, 168, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: visible;
}

#aura-fab i {
  font-size: 1.5rem;
}

/* Notification Badge */
#aura-fab::after {
  content: '1';
  position: absolute;
  top: -2px;
  right: -2px;
  background: #ffb400;
  color: #0b2240;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  font-size: 0.8rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #0b2240;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  z-index: 2;
  animation: badgePulse 2s infinite;
}

@keyframes badgePulse {
  0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 180, 0, 0.7); }
  70% { transform: scale(1.1); box-shadow: 0 0 0 10px rgba(255, 180, 0, 0); }
  100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 180, 0, 0); }
}

#aura-fab img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  padding: 8px;
}

#aura-fab i {
  font-size: 1.2rem;
}

#aura-fab:hover {
  transform: translateY(-5px) scale(1.08);
  box-shadow: 0 15px 40px rgba(26, 95, 168, 0.5);
  background: var(--aura-user-msg);
}

#aura-fab.active {
  background: #0b2240;
  color: #ffb400;
  transform: rotate(90deg) scale(0.95);
  border-color: #ffb400;
}

#aura-fab.active i {
  color: #ffb400;
}

#aura-fab i {
  transition: all 0.3s ease;
}

/* ── WIDGET PANEL ── */
#aura-widget {
  position: fixed;
  bottom: 100px;
  right: 25px;
  width: 380px;
  height: 600px;
  max-height: calc(100dvh - 120px);
  background: var(--aura-bg-dark);
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  transform: translateY(20px) scale(0.98);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  z-index: 10000;
  border: 1px solid var(--aura-border);
}

#aura-widget.open {
  transform: translateY(0) scale(1);
  opacity: 1;
  visibility: visible;
}

/* Header */
.widget-header {
  background: var(--aura-primary);
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: white;
}

.wh-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.wh-avatar {
  width: 36px;
  height: 36px;
  background: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 1.1rem;
  overflow: hidden;
  border: 1.5px solid rgba(255,255,255,0.1);
}

.wh-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wh-info { line-height: 1.2; }
.wh-name { font-weight: 700; font-size: 1rem; }
.wh-status {
  font-size: 0.75rem;
  opacity: 0.85;
  display: flex; align-items: center; gap: 6px;
}
.wh-status::before {
  content: "";
  width: 8px; height: 8px;
  background: #4caf50; border-radius: 50%;
  display: inline-block; box-shadow: 0 0 8px #4caf50;
}

.wh-actions { display: flex; gap: 12px; }
.wh-btn {
  background: none; border: none;
  color: white; cursor: pointer;
  font-size: 1.1rem; opacity: 0.6;
  transition: opacity 0.2s;
}
.wh-btn:hover { opacity: 1; }

/* Messages Area */
.widget-messages {
  flex: 1;
  padding: 20px 20px 60px; /* Increased bottom padding for suggestions visibility */
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
  background: #061225;
  scrollbar-width: thin;
}

.widget-messages::-webkit-scrollbar { width: 5px; }
.widget-messages::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.1); border-radius: 10px; }

.msg {
  max-width: 85%;
  min-width: 50px;
  padding: 12px 16px;
  border-radius: 16px;
  font-size: 0.95rem;
  line-height: 1.45;
  word-wrap: break-word;
  animation: msgPopUp 0.3s ease-out;
}

@keyframes msgPopUp {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.w-msg-row {
  display: flex;
  gap: 12px;
  max-width: 90%;
  animation: msgPopUp 0.3s ease-out;
}

.w-msg-row.user {
  align-self: flex-end;
  flex-direction: row-reverse;
}

.w-msg-row.bot {
  align-self: flex-start;
}

.w-msg-av {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 1.5px solid rgba(255,255,255,0.1);
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.w-msg-av img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.w-msg-av.bot-av { border-color: #ffb400; }
.w-msg-av.user-av { border-color: #1a5fa8; }

.w-bubble {
  padding: 10px 15px;
  border-radius: 15px;
  font-size: 0.92rem;
  line-height: 1.5;
  background: var(--aura-bot-msg);
  color: white;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.w-msg-row.user .w-bubble {
  background: var(--aura-user-msg);
  border-bottom-right-radius: 4px;
}

.w-msg-row.bot .w-bubble {
  border-bottom-left-radius: 4px;
}

.msg.bot {
  align-self: flex-start;
  background: var(--aura-bot-msg);
  color: white;
  border-bottom-left-radius: 4px;
}

/* Force visibility for all links inside message bubbles */
.msg a,
.msg a:link,
.msg a:visited {
  color: #70b5ff !important; /* Brighter, more vibrant blue for better contrast */
  text-decoration: underline !important;
  font-weight: 600 !important;
  transition: all 0.2s ease;
}

.msg a:hover,
.msg a:active {
  color: var(--aura-accent) !important;
  text-shadow: 0 0 10px rgba(255, 180, 0, 0.5);
}




.msg.user {
  align-self: flex-end;
  background: var(--aura-user-msg);
  color: white;
  border-bottom-right-radius: 4px;
}

/* Suggestions Row */
.suggestions-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
  margin-bottom: 20px;
  width: 100%;
  justify-content: flex-start;
  animation: fadeIn 0.4s ease-out;
}

.suggestion-chip {
  padding: 8px 18px !important;
  border-radius: 50px !important;
  font-size: 0.85rem !important;
  font-weight: 600 !important;
  cursor: pointer !important;
  background: #0b2240 !important;
  border: 1.5px solid #ffb400 !important;
  color: #ffffff !important;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2) !important;
  margin: 4px 2px !important;
  outline: none !important;
  white-space: nowrap !important;
  line-height: 1 !important;
}

.suggestion-chip:hover {
  background: #ffb400 !important;
  color: #0b2240 !important;
  transform: translateY(-3px) scale(1.05) !important;
  box-shadow: 0 8px 25px rgba(245, 166, 35, 0.5) !important;
}

.suggestion-chip i {
  color: #ffb400;
  transition: color 0.3s ease;
}

.suggestion-chip:hover i {
  color: #0b2240;
}

/* Input Area */
.widget-input-area {
  padding: 15px 20px;
  background: var(--aura-bg-dark);
  display: flex;
  gap: 12px;
  align-items: center;
  border-top: 1px solid var(--aura-border);
}

.w-textarea {
  flex: 1;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--aura-border);
  border-radius: 12px;
  padding: 10px 15px;
  color: white;
  resize: none;
  font-size: 0.92rem;
  max-height: 100px;
}

.w-send-btn {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, #ffb400 0%, #f5a623 100%);
  border: none;
  border-radius: 50%;
  color: #0b2240;
  cursor: pointer;
  display: flex; 
  align-items: center; 
  justify-content: center;
  font-size: 1.15rem;
  box-shadow: 0 4px 15px rgba(245, 166, 35, 0.3);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.w-send-btn:hover {
  transform: scale(1.1) rotate(-10deg);
  box-shadow: 0 8px 25px rgba(245, 166, 35, 0.5);
  background: linear-gradient(135deg, #ffc533 0%, #ffb400 100%);
}

.w-send-btn:active {
  transform: scale(0.9);
}

.widget-footer {
  padding: 8px;
  text-align: center;
  font-size: 0.7rem;
  color: rgba(255,255,255,0.2);
  background: var(--aura-bg-dark);
  border-top: 1px solid rgba(255,255,255,0.02);
}

/* ── FULL PAGE CHATBOT ── */
.chat-page {
  display: flex;
  height: 100vh;
  height: 100dvh;
  background: var(--aura-bg);
  color: white;
  overflow: hidden;
}

.chat-sidebar {
  width: 280px;
  background: #081a30;
  border-right: 1px solid var(--aura-border);
  padding: 35px 25px;
  display: flex;
  flex-direction: column;
}

.sidebar-title {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 35px;
}

.chat-area {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.chat-messages {
  flex: 1;
  padding: 40px;
  overflow-y: auto;
  min-height: 0;
  -webkit-overflow-scrolling: touch;
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
  width: 100%;
}

.chat-input-area {
  padding: 25px 40px;
  background: rgba(0,0,0,0.15);
  border-top: 1px solid var(--aura-border);
}

.input-row {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  gap: 15px;
  background: rgba(255,255,255,0.05);
  padding: 10px;
  border-radius: 15px;
  border: 1px solid var(--aura-border);
}

.chat-textarea {
  flex: 1;
  background: transparent;
  border: none;
  color: white;
  padding: 8px 15px;
  font-size: 1rem;
  resize: none;
  outline: none;
}

.send-btn {
  background: var(--aura-accent);
  border: none;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  color: #0b2240;
  cursor: pointer;
  font-size: 1.2rem;
}

/* Sidebar Elements */
.sidebar-label {
  text-transform: uppercase;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.25);
  margin-bottom: 20px;
}

.sidebar-btn {
  width: 100%;
  padding: 10px 14px;
  background: transparent;
  border: 1px solid transparent;
  color: rgba(255,255,255,0.8);
  text-align: left;
  border-radius: 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 5px;
  transition: all 0.2s;
  font-size: 0.9rem;
}

.sidebar-btn:hover {
  background: rgba(255,255,255,0.04);
  color: #fff;
}

.aura-stat-item {
  display: flex;
  justify-content: space-between;
  font-size: 0.88rem;
  margin-bottom: 12px;
  color: rgba(255,255,255,0.5);
}

/* Welcome Banner */
.welcome-banner {
  background: rgba(26, 95, 168, 0.03);
  border: 1px solid rgba(26, 95, 168, 0.15);
  border-radius: 20px;
  padding: 40px;
  margin-bottom: 30px;
  position: relative;
  overflow: hidden;
  text-align: left;
}

.welcome-banner::before {
  content: "";
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(26,95,168,0.05) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(26,95,168,0.05) 1px, transparent 1px);
  background-size: 30px 30px;
  pointer-events: none;
}

/* ═══════════════════════════════════════
   MOBILE RESPONSIVENESS (Optimized)
═══════════════════════════════════════ */
@media screen and (max-width: 768px) {
  /* Widget Adjustments — Full Screen Feel */
  #aura-widget {
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    max-height: 100dvh;
    right: 0;
    bottom: 0;
    left: 0;
    top: 0;
    border-radius: 0;
    z-index: 100000; /* Above everything */
    transform: translateY(100%);
    border: none;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  }

  #aura-widget.open {
    transform: translateY(0) scale(1);
  }

  .widget-header {
    padding: 18px 20px;
    border-radius: 0;
  }

  .wh-name {
    font-size: 1.1rem;
  }

  .widget-messages {
    padding: 20px 15px;
  }

  .msg {
    max-width: 90%;
    font-size: 0.92rem;
  }

  /* Horizontal scrolling for suggestions on mobile */
  .suggestions-row {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 8px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    margin-right: -15px; /* Bleed to edge */
  }

  .suggestions-row::-webkit-scrollbar {
    display: none;
  }

  .suggestion-chip {
    flex-shrink: 0;
    white-space: nowrap;
  }

  .widget-input-area {
    padding: 15px 15px 30px; /* Extra bottom padding for home indicators */
    background: var(--aura-bg-dark);
  }

  .w-textarea {
    font-size: 1rem; /* Prevent auto-zoom on iOS */
  }

  /* FAB Container Adjustments */
  .aura-fab-container {
    bottom: 25px;
    right: 20px;
    z-index: 99999;
  }

  /* Hide label on mobile */
  .aura-fab-label {
    display: none !important;
  }

  #aura-fab {
    width: 60px;
    height: 60px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.4);
  }

  /* Full Page Chatbot Adjustments */
  .chat-page {
    flex-direction: column;
  }

  .chat-sidebar {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid var(--aura-border);
    padding: 15px 20px;
    max-height: 60px; /* Collapsed view */
    overflow: hidden;
  }
  
  .chat-sidebar:focus-within {
      max-height: 300px;
  }

  .chat-messages {
    padding: 20px 15px;
  }

  .chat-input-area {
    padding: 12px 15px 25px;
  }

  .input-row {
    padding: 6px;
    border-radius: 12px;
  }

  .chat-textarea {
    font-size: 1rem;
  }
}

@media screen and (max-width: 480px) {
  .msg {
    max-width: 92%;
  }
  
  .widget-header {
      padding: 15px 15px;
  }
}
  body { font-family: 'Plus Jakarta Sans', sans-serif; margin: 0; }
    
    /* Mobile Layout Optimizations */
    @media screen and (max-width: 768px) {
      .chat-sidebar {
        display: none !important;
      }
      .chat-header {
        padding: 10px 15px !important;
        flex-direction: row !important;
        align-items: center !important;
        gap: 10px;
      }
      .wh-actions {
        width: auto;
        justify-content: flex-end;
      }
      .welcome-banner {
        padding: 20px !important;
        margin-bottom: 15px !important;
      }
      .welcome-banner h1 {
        font-size: 1.8rem !important;
      }
      .chat-input-area .input-row {
        display: flex;
        align-items: center;
      }
      .chat-input-area .chat-textarea {
        flex: 1;
        width: 100%;
      }
      .chat-input-area .send-btn {
        width: 48px;
        height: 48px;
        flex-shrink: 0;
      }
    }

    @media screen and (max-width: 480px) {
      .chat-header {
        padding: 12px 15px !important;
      }
      .chat-header-title {
        font-size: 1rem !important;
        white-space: normal;
      }
      .wh-actions .sidebar-btn {
        padding: 8px 12px !important;
        font-size: 0.85rem !important;
      }
      .wh-avatar {
        width: 36px !important;
        height: 36px !important;
      }
    }
/* ── WIDGET MOBILE OPTIMIZATION ── */
@media screen and (max-width: 480px) {
  /* GLOBAL SCROLLBAR HIDE FOR MOBILE */
  #aura-widget.open,
  .widget-messages,
  .suggestions-row,
  .chat-messages,
  .chat-container {
    scrollbar-width: none !important;
    -ms-overflow-style: none !important;
  }

  #aura-widget.open::-webkit-scrollbar,
  .widget-messages::-webkit-scrollbar,
  .suggestions-row::-webkit-scrollbar,
  .chat-messages::-webkit-scrollbar,
  .chat-container::-webkit-scrollbar {
    display: none !important;
  }

  /* FULL-SCREEN MOBILE IMMERSIVE MODE */
  #aura-widget.open {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100vw !important;
    height: 100dvh !important;
    right: 0 !important;
    bottom: 0 !important;
    border-radius: 0 !important;
    display: flex !important;
    z-index: 20000 !important;
    margin: 0 !important;
    overflow: hidden !important;
  }

  .widget-messages {
    padding: 15px 15px 120px !important; /* Spacious room for wrapped chips */
    overflow-y: auto !important;
  }

  .widget-header {
    border-radius: 0 !important;
    padding: 20px 15px !important;
    height: 75px !important;
    flex-shrink: 0 !important;
  }

  /* Hide FAB container entirely when full-screen is open */
  .aura-fab-container:has(#aura-fab.active),
  .aura-fab-container.active-mode {
    display: none !important;
  }

  #aura-fab.active {
    display: none !important;
  }

  .w-bubble {
    font-size: 0.95rem !important;
    padding: 14px 20px !important;
    max-width: 90% !important;
    margin-bottom: 15px !important;
    line-height: 1.6 !important;
    border-radius: 20px !important;
  }

  /* VERTICAL STACKING - REMOVE SCROLL */
  /* FIXED BOTTOM NAVIGATION - FILL VACANT SPACE */
  /* INLINE FLOW - MOVE AS PER CURSOR */
  /* FIXED PREMIUM NAVIGATION - ELIMINATE SCROLLING */
  .suggestions-row {
    display: none !important; /* Hide old suggestions to prevent clutter */
  }

  .suggestions-row:last-of-type {
    display: flex !important;
    flex-direction: column !important;
    gap: 10px !important;
    padding: 15px 20px 25px !important;
    position: fixed !important;
    bottom: 105px !important; /* Pinned above "Ask me anything" */
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    background: linear-gradient(to top, #081a30 95%, transparent) !important;
    z-index: 10000 !important;
    border: none !important;
    margin: 0 !important;
    overflow: hidden !important;
  }

  .widget-messages {
    padding: 15px 15px 320px !important; /* Heavy padding to clear fixed menu */
    overflow-y: auto !important;
    display: flex !important;
    flex-direction: column !important;
    scrollbar-width: none !important;
  }

  .widget-messages::-webkit-scrollbar {
    display: none !important;
  }

  /* Large Accessible Full-Width Buttons */
  .suggestion-chip {
    width: 100% !important;
    padding: 14px 20px !important;
    font-size: 0.95rem !important;
    font-weight: 700 !important;
    border-radius: 12px !important; /* More modern menu look */
    background: linear-gradient(135deg, var(--aura-primary), #1a5fa8) !important;
    color: white !important;
    border: 1px solid var(--gold) !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.4) !important;
    justify-content: flex-start !important;
    white-space: normal !important; /* Allow text wrap if very long */
    margin: 0 !important;
  }

  .suggestion-chip i {
    font-size: 1.1rem !important;
    margin-right: 12px !important;
    color: var(--gold) !important;
  }

  .suggestion-chip i {
    font-size: 1rem !important;
    margin-right: 8px !important;
  }

  /* Optimized Header Buttons for Full Screen */
  .wh-btn {
    width: 44px !important;
    height: 44px !important;
    font-size: 1.3rem !important;
    opacity: 1 !important;
  }
}
