/* --- Design Tokens --- */
:root {
  /* Brand */
  --brand: #c17044;
  --brand-dark: #9a5a38;
  --brand-darker: #6b3d26;
  --brand-light: #ec894d;
  --brand-glow: rgba(193, 112, 68, 0.35);

  /* Surfaces */
  --bg-hero: transparent;
  --bg-body: #ffffff;
  --bg-gradient: linear-gradient(
    180deg,
    #5c3320 0%,
    /* Dark brown at top */ #8b5535 18%,
    /* Warm brown */ #c17044 30%,
    /* Brand brown */ #d4a47a 42%,
    /* Light tan */ #e8ccaf 52%,
    /* Soft beige */ #f2e4d5 60%,
    /* Off-white warm */ #f8f0e8 68%,
    /* Near-white */ #fdfaf7 78%,
    /* Almost white */ #ffffff 88% /* Pure white */
  );
  --bg-white: #ffffff;
  --bg-card: #ffffff;
  --bg-input: #f8f5f2;
  --bg-nav: #ffffff;

  /* Text */
  --text-primary: #1a1a2e;
  --text-secondary: #666;
  --text-muted: #999;
  --text-on-dark: #ffffff;
  --text-on-dark-muted: rgba(255, 255, 255, 0.7);

  /* Misc */
  --border-light: #eee;
  --border-card: rgba(0, 0, 0, 0.06);
  --shadow-card: 0 2px 12px rgba(0, 0, 0, 0.06);
  --shadow-card-hover: 0 4px 20px rgba(0, 0, 0, 0.1);
  --shadow-nav: 0 -2px 12px rgba(0, 0, 0, 0.06);
  --radius-sm: 10px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 24px;
  --radius-full: 50%;
  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --font: "Inter", -apple-system, system-ui, sans-serif;
}

/* --- Reset --- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* --- Base --- */
html,
body {
  font-family: var(--font);
  font-size: 15px;
  background: var(--bg-body);
  color: var(--text-primary);
  height: 100dvh;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-font-smoothing: antialiased;
}

.widget-container {
  width: 100%;
  max-width: 420px;
  height: 100dvh;
  max-height: 720px;
  display: flex;
  flex-direction: column;
  background: var(--bg-gradient);
  overflow: hidden;
  position: relative;
  animation: widgetOpen 0.4s ease forwards;
}

@keyframes widgetOpen {
  from {
    opacity: 0;
    transform: translateY(16px) scale(0.97);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (min-width: 481px) {
  .widget-container {
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
    border: 1px solid rgba(0, 0, 0, 0.08);
  }
}

@media (max-width: 480px) {
  .widget-container {
    max-width: 100%;
    max-height: 100%;
    border-radius: 0;
  }
}

.view {
  display: none;
  flex-direction: column;
  flex: 1;
  overflow: hidden;
  animation: viewFadeIn 0.3s ease;
}

.view.active {
  display: flex;
}

@keyframes viewFadeIn {
  from {
    opacity: 0;
    transform: translateX(8px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.hero-header {
  background: transparent;
  color: var(--text-on-dark);
  padding: 20px 22px 30px;
  position: relative;
  overflow: visible;
  z-index: 2;
}

/* Decorative dot grid */
.hero-header::after {
  content: "";
  position: absolute;
  top: 18px;
  right: 18px;
  width: 55px;
  height: 55px;
  background-image: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.12) 1.5px,
    transparent 1.5px
  );
  background-size: 10px 10px;
  opacity: 0.5;
  z-index: 0;
}

.hero-top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.hero-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-logo-img {
  height: 32px;
  width: auto;
  border-radius: 0;
  border: none;
  object-fit: contain;
}

.hero-brand {
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.3px;
}

.close-btn {
  width: 30px;
  height: 30px;
  border: none;
  background: rgba(255, 255, 255, 0.12);
  color: var(--text-on-dark);
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: all var(--transition);
}

.close-btn:hover {
  background: rgba(255, 255, 255, 0.22);
}

/* Team Avatars */
.team-avatars {
  display: flex;
  gap: 0;
  margin-bottom: 18px;
}

.avatar-circle {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 16px;
  border: 3px solid var(--brand-darker);
  margin-left: -8px;
  transition: transform var(--transition);
}

.avatar-circle:first-child {
  margin-left: 0;
}

.avatar-circle:hover {
  transform: translateY(-3px) scale(1.08);
  z-index: 2;
}

.hero-greeting {
  font-size: clamp(22px, 5.5vw, 26px);
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.3px;
}

.hero-powered-by {
  font-size: 11px;
  font-weight: 500;
  color: var(--text-on-dark-muted);
  margin-top: 6px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  animation: fadeIn 0.8s ease backwards 0.4s;
}

.hero-powered-by a {
  color: var(--text-on-dark);
  text-decoration: none;
  font-weight: 700;
  transition: opacity var(--transition);
}

.hero-powered-by a:hover {
  opacity: 0.8;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(4px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.home-content {
  flex: 1;
  overflow-y: auto;
  padding: 16px 16px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: transparent;
}

.home-card {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border-card);
  transition:
    box-shadow var(--transition),
    transform var(--transition);
}

.home-card:hover {
  box-shadow: var(--shadow-card-hover);
}

/* Recent Message Card */
.recent-message-card {
  cursor: pointer;
}

.recent-message-card:hover {
  transform: translateY(-1px);
}

.card-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 0.8px;
  margin-bottom: 10px;
}

.recent-msg-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.recent-msg-avatar {
  width: 36px;
  height: 36px;
  min-width: 36px;
  border-radius: var(--radius-full);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.recent-msg-avatar-img {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  object-fit: cover;
  display: block;
}

.recent-msg-body {
  flex: 1;
  min-width: 0;
}

.recent-msg-title {
  font-weight: 600;
  font-size: 14px;
  color: var(--text-primary);
}

.recent-msg-preview {
  font-size: 12.5px;
  color: var(--text-secondary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.recent-msg-time {
  font-size: 11px;
  color: var(--text-muted);
  white-space: nowrap;
  align-self: flex-start;
  margin-top: 2px;
}

.status-card {
  background: #f0faf0;
  border-color: #c8e6c9;
}

.status-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.status-icon-check {
  width: 36px;
  height: 36px;
  min-width: 36px;
  border-radius: var(--radius-full);
  background: #e8f5e9;
  color: #4caf50;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.status-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.status-text strong {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
}

.status-updated {
  font-size: 12.5px;
  color: var(--text-secondary);
}

/* Search Card */
.search-card {
  position: relative;
  padding: 0;
  overflow: hidden;
}

.search-input {
  width: 100%;
  padding: 13px 40px 13px 16px;
  border: none;
  background: transparent;
  font-size: 14px;
  font-family: var(--font);
  color: var(--text-primary);
  outline: none;
}

.search-input::placeholder {
  color: var(--text-muted);
}

.search-icon {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--brand);
  font-size: 14px;
}

/* Quick Links */
.quick-links-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.quick-link-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  text-decoration: none;
  color: var(--text-primary);
  font-size: 14px;
  font-weight: 600;
  background: #ffffff;
  border-radius: var(--radius-lg);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
  transition: all var(--transition);
  border: 1px solid rgba(0, 0, 0, 0.02);
}

.quick-link-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(193, 112, 68, 0.12);
}

.quick-link-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(193, 112, 68, 0.1);
  color: var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.quick-link-item span {
  flex: 1;
  color: #443d3a;
}

.link-arrow {
  color: #d1cac6;
  font-size: 12px;
  transition: transform var(--transition);
}

.quick-link-item:hover .link-arrow {
  transform: translateX(3px);
  color: var(--brand);
}

.quick-link-item:hover .quick-link-icon {
  background: var(--brand);
  color: white;
}

/* ============ CHAT VIEW — Clean Minimal UI ============ */

.chat-header {
  background: var(--bg-white);
  padding: 10px 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid var(--border-light);
  flex-shrink: 0;
}

.back-btn {
  width: 32px;
  height: 32px;
  border: none;
  background: transparent;
  color: var(--text-primary);
  border-radius: var(--radius-full);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: all var(--transition);
  flex-shrink: 0;
}

.back-btn:hover {
  background: var(--bg-input);
}

.chat-header-avatar {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  overflow: hidden;
  border-radius: var(--radius-full);
}

.chat-header-avatar img {
  width: 34px;
  height: 34px;
  border-radius: var(--radius-full);
  object-fit: cover;
  display: block;
}

.chat-header-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.chat-header-title {
  font-weight: 700;
  font-size: 14px;
  color: var(--text-primary);
  line-height: 1.2;
}

.chat-header-status {
  font-size: 11px;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 5px;
}

.header-icon-btn {
  width: 32px;
  height: 32px;
  border: none;
  background: transparent;
  color: var(--text-secondary);
  border-radius: var(--radius-full);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: all var(--transition);
  flex-shrink: 0;
}

.header-icon-btn:hover {
  background: var(--bg-input);
  color: var(--text-primary);
}

.header-icon-btn:active {
  transform: scale(0.92);
}

/* Original clear/trash button — preserved */
.clear-btn {
  width: 34px;
  height: 34px;
  border: none;
  background: var(--bg-input);
  color: var(--text-secondary);
  border-radius: var(--radius-sm);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}

.clear-btn:hover {
  background: #e8e0dc;
  color: var(--text-primary);
}

.clear-btn:active {
  transform: scale(0.92);
}

.trash-icon {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
}

.trash-lid {
  transform-origin: 12px 6px;
  transition: transform 0.3s cubic-bezier(0.5, 0, 0.5, 1);
}

.clear-btn.clearing .trash-lid {
  transform: rotate(-30deg) translateY(-2px);
}

.online-dot-sm {
  width: 6px;
  height: 6px;
  background: #34d399;
  border-radius: var(--radius-full);
  display: inline-block;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(0.7);
  }
}

/* Chat Container */
.chat-container {
  flex: 1;
  overflow-y: auto;
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: var(--bg-body);
  scroll-behavior: smooth;
}

.message {
  display: flex;
  flex-direction: column;
  animation: msgIn 0.3s ease backwards;
}

@keyframes msgIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.message.user {
  align-items: flex-end;
}

.message.bot {
  align-items: flex-start;
}

.bubble {
  max-width: 85%;
  padding: 12px 16px;
  border-radius: 20px;
  font-size: 14px;
  line-height: 1.5;
  word-wrap: break-word;
  white-space: pre-wrap;
}

.message.user .bubble {
  background: var(--brand);
  color: var(--text-on-dark);
  border-bottom-right-radius: 6px;
  box-shadow: 0 2px 8px var(--brand-glow);
}

.message.bot .bubble {
  background: #f4f4f5;
  color: var(--text-primary);
  border-bottom-left-radius: 6px;
  border: none;
  box-shadow: none;
}

/* Bot message metadata line */
.bot-meta {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 4px;
  padding-left: 2px;
  font-weight: 400;
}

.bot-avatar {
  display: none;
}

/* Suggestion Chips — right-aligned, stacked */
.suggestion-chips {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  margin-top: auto;
  padding-top: 16px;
}

.suggestion-chip {
  padding: 10px 20px;
  background: var(--bg-white);
  border: 1px solid #e0e0e0;
  border-radius: 22px;
  font-size: 13.5px;
  font-family: var(--font);
  cursor: pointer;
  transition: all var(--transition);
  color: var(--brand);
  font-weight: 500;
  white-space: nowrap;
}

.suggestion-chip:hover {
  border-color: var(--brand);
  background: rgba(193, 112, 68, 0.04);
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(193, 112, 68, 0.1);
}

.suggestion-chip:active {
  transform: scale(0.97);
  background: rgba(193, 112, 68, 0.08);
}

/* Typing Indicator */
.typing-indicator {
  display: flex;
  gap: 5px;
  padding: 14px 18px;
  align-items: center;
}

.typing-indicator .dot {
  width: 7px;
  height: 7px;
  background: var(--text-muted);
  border-radius: var(--radius-full);
  animation: bounce 1.4s ease-in-out infinite;
}

.typing-indicator .dot:nth-child(2) {
  animation-delay: 0.15s;
}

.typing-indicator .dot:nth-child(3) {
  animation-delay: 0.3s;
}

@keyframes bounce {
  0%,
  60%,
  100% {
    transform: translateY(0);
    opacity: 0.4;
  }

  30% {
    transform: translateY(-6px);
    opacity: 1;
  }
}

/* Input Section */
.input-section {
  flex-shrink: 0;
  background: var(--bg-white);
  border-top: 1px solid var(--border-light);
  padding: 10px 14px 10px;
  transition:
    transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.3s ease;
}

.input-section.hidden {
  display: none;
}

.input-section.revealing {
  animation: slideUpReveal 0.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes slideUpReveal {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

#chatForm {
  display: flex;
  gap: 8px;
}

#messageInput {
  flex: 1;
  padding: 11px 16px;
  border: 1.5px solid var(--border-light);
  background: var(--bg-input);
  border-radius: var(--radius-xl);
  font-size: 14px;
  font-family: var(--font);
  outline: none;
  transition: all var(--transition);
  color: var(--text-primary);
}

#messageInput::placeholder {
  color: var(--text-muted);
}

#messageInput:focus {
  border-color: var(--brand);
  background: var(--bg-white);
  box-shadow: 0 0 0 3px rgba(193, 112, 68, 0.1);
}

.send-btn {
  width: 42px;
  height: 42px;
  border: none;
  background: var(--brand-light);
  color: white;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  box-shadow: 0 4px 14px var(--brand-glow);
  flex-shrink: 0;
}

.send-btn:hover {
  background: var(--brand);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px var(--brand-glow);
}

.send-btn:active {
  transform: scale(0.93);
}

/* Quick Buttons */
.quick-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
}

.quick-btn {
  padding: 7px 14px;
  background: var(--bg-white);
  border: 1px solid #e0e0e0;
  border-radius: 20px;
  font-size: 12px;
  font-family: var(--font);
  cursor: pointer;
  transition: all var(--transition);
  color: var(--brand);
  font-weight: 500;
  white-space: nowrap;
}

.quick-btn:hover {
  border-color: var(--brand);
  background: rgba(193, 112, 68, 0.04);
  transform: translateY(-1px);
}

.quick-btn:active {
  background: var(--brand);
  color: white;
  border-color: var(--brand);
}

/* ============ HELP VIEW — Dark Hero + Compact FAQ ============ */

.help-hero {
  background: linear-gradient(
    160deg,
    #3d2114 0%,
    #5c3320 30%,
    #8b5535 60%,
    #c17044 100%
  );
  color: #ffffff;
  padding: 16px 16px 12px;
  flex-shrink: 0;
}

.help-hero h2 {
  font-size: 18px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 2px;
  letter-spacing: -0.2px;
}

.help-hero p {
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.65);
  font-weight: 400;
}

/* Search bar inside hero */
.help-search-bar {
  position: relative;
  margin-top: 10px;
}

.help-search-bar input {
  width: 100%;
  height: 34px;
  padding: 0 12px 0 32px;
  border: none;
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  font-size: 12.5px;
  font-family: var(--font);
  outline: none;
  transition: background var(--transition);
}

.help-search-bar input::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.help-search-bar input:focus {
  background: rgba(255, 255, 255, 0.2);
}

.help-search-icon {
  position: absolute;
  left: 11px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  pointer-events: none;
}

/* Help body (card area) */
.help-body {
  flex: 1;
  overflow-y: auto;
  padding: 14px 14px 12px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  background: var(--bg-body);
}

/* FAQ List Card */
.faq-list {
  display: flex;
  flex-direction: column;
  background: var(--bg-white);
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.faq-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  cursor: pointer;
  transition:
    background var(--transition),
    transform 0.15s ease;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  flex-shrink: 0;
}

.faq-item:first-child {
  border-radius: 16px 16px 0 0;
}

.faq-item:last-child {
  border-bottom: none;
  border-radius: 0 0 16px 16px;
}

.faq-item:hover {
  background: rgba(193, 112, 68, 0.04);
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(193, 112, 68, 0.1);
}

.faq-item:active {
  transform: scale(0.98);
  background: rgba(193, 112, 68, 0.08);
}

.faq-icon {
  width: 32px;
  height: 32px;
  min-width: 32px;
  border-radius: 8px;
  background: rgba(193, 112, 68, 0.08);
  color: var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  transition:
    background var(--transition),
    color var(--transition);
}

.faq-item:hover .faq-icon {
  background: var(--brand);
  color: #ffffff;
}

.faq-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-width: 0;
  gap: 1px;
}

.faq-text strong {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
}

.faq-text span {
  font-size: 11px;
  color: var(--text-secondary);
}

.faq-arrow {
  color: #d1cac6;
  font-size: 10px;
  transition:
    transform var(--transition),
    color var(--transition);
}

.faq-item:hover .faq-arrow {
  transform: translateX(3px);
  color: var(--brand);
}

/* Powered By footer */
.powered-by {
  text-align: center;
  font-family: "Georgia", "Times New Roman", serif;
  font-size: 11px;
  color: #b5a99a;
  margin-top: 14px;
  letter-spacing: 0.5px;
  font-style: italic;
}

.powered-by strong {
  font-style: normal;
  font-weight: 700;
  letter-spacing: 1.2px;
  color: #9a8d7f;
}

.bottom-nav {
  display: flex;
  justify-content: space-around;
  align-items: center;
  background: var(--bg-nav);
  border-top: 1px solid var(--border-light);
  padding: 6px 0 8px;
  flex-shrink: 0;
  box-shadow: var(--shadow-nav);
}

.nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  padding: 6px 16px;
  border: none;
  background: none;
  cursor: pointer;
  color: var(--text-muted);
  font-family: var(--font);
  font-size: 10px;
  font-weight: 600;
  transition: color var(--transition);
  position: relative;
}

.nav-item i {
  font-size: 18px;
  transition: transform var(--transition);
}

.nav-item.active {
  color: var(--brand);
}

.nav-item.active i {
  transform: scale(1.1);
}

.nav-item:hover:not(.active) {
  color: var(--text-secondary);
}

/* message badge */
.nav-item .badge {
  position: absolute;
  top: 2px;
  right: 10px;
  width: 8px;
  height: 8px;
  background: #ef4444;
  border-radius: var(--radius-full);
  border: 2px solid var(--bg-nav);
}

.home-content::-webkit-scrollbar,
.chat-container::-webkit-scrollbar,
.help-body::-webkit-scrollbar {
  width: 4px;
}

.home-content::-webkit-scrollbar-track,
.chat-container::-webkit-scrollbar-track,
.help-body::-webkit-scrollbar-track {
  background: transparent;
}

.home-content::-webkit-scrollbar-thumb,
.chat-container::-webkit-scrollbar-thumb,
.help-body::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.08);
  border-radius: 3px;
}

/* Firefox */
.home-content,
.chat-container,
.help-body {
  scrollbar-width: thin;
  scrollbar-color: rgba(0, 0, 0, 0.08) transparent;
}

/* Powered By Link */
.powered-by a {
  color: inherit;
  text-decoration: none;
}
