:root {
  --primary-background-color-light: linear-gradient(180deg, #fff -23.05%, #eef2f8 47.88%, #d6dfee 147.61%);
  --primary-button-background: linear-gradient(0deg, #1a3bb5 0%, #1a3bb5 100%), linear-gradient(180deg, #6989F4 0%, #3C64F4 100%);
  --primary-button-background-hover: linear-gradient(0deg, #3253ca 0%, #3253ca 100%), linear-gradient(180deg, #6989f4 0%, #3c64f4 100%);
  --secondary-button-background-light: rgba(0, 0, 0, 0.03);
  --secondary-button-background-light-hover: rgba(0, 0, 0, 0.06);
  --color-white: #fff;
  --color-black: #000;
  --color-border-light: rgba(51, 51, 51, 0.1);
  --color-header-bg: #f7f8fa;
  --color-sidebar-bg: #fdfdfd;
  --color-user-bubble: #4c2a95;
  --color-ai-bubble: #e4e6eb;
  --color-text-muted: #666;
  --color-link: #1a3bb5;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  height: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden !important;
}

body {
  font-family: 'Poppins', sans-serif;
  background: var(--primary-background-color-light);
  color: var(--color-black);
}

.user-dashboard {
  height: 100dvh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--primary-background-color-light);
}

/* Navbar */
.headers {
  height: 60px;
  background: var(--color-header-bg);
  box-shadow: 0px 2px 2px -2px rgba(0, 0, 0, 0.15);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 0 20px;
}

.headers-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1800px;
  padding: 6px 20px 6px 0;
  height: 100%;
  margin: auto;
}

.logo {
  display: flex;
  width: 100px;
  cursor: pointer;
}

.logo img {
  width: 100%;
  padding-left: 10px;
}

.right {
  display: flex;
  align-items: center;
  gap: 15px;
}

.token {
  display: inline-flex;
  padding: 2px 8px;
  justify-content: center;
  align-items: center;
  gap: 6px;
  border-radius: 20px;
  background: rgba(192, 192, 192, 0.5);
  cursor: pointer;
}

.token-credits {
  display: flex;
  align-items: center;
  gap: 6px;
}

.token-credits .icon {
  border: 1px solid rgba(96, 99, 104, 0.3);
  border-radius: 50%;
  padding: 2px;
  display: flex;
}

.credits-data {
  font-size: 12px;
  font-weight: 700;
  border-bottom: 1px dotted rgba(96, 99, 104, 0.3);
}

.credits-info {
  font-size: 9px;
  font-style: oblique;
}

.nav-icon-btn {
  background: none;
  border: none;
  cursor: pointer;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
}

.nav-icon-btn:hover {
  background: rgba(192, 192, 192, 0.5);
}

.profile {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.profile-img-container {
  width: 50px;
  height: 50px;
}

.profile-img-container img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #5b5b93;
}

.profile .details h1 {
  font-size: 14px;
  font-weight: 400;
  margin: 0;
}

.profile .details button {
  font-size: 12px;
  background: none;
  border: none;
  color: #1a3bb5;
  padding: 0;
}

/* Layout */
.ask-page-v2 {
  display: flex;
  flex: 1;
  overflow: hidden;
  justify-content: space-between;
}

/* Sidebar */
.ask-sidebar {
  width: 320px;
  background: transparent;
  border-right: 1px solid var(--color-border-light);
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
}

.ask-sidebar.closed {
  width: 0;
  opacity: 0;
  pointer-events: none;
  border-right: none;
}

.ask-sidebar-header {
  padding: 15px;
}

.new-conv-btn {
  width: 100%;
  padding: 12px;
  background: rgba(0, 0, 0, 0.03);
  color: #000;
  border: 1px solid var(--color-border-light);
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.new-conv-btn svg {
  stroke: #000;
}

.new-conv-btn:hover {
  background: #f5f5f5;
}

.ask-sidebar-title {
  width: 100%;
  padding: 0.5rem 1rem 0.2rem 1rem;
  margin-bottom: 0.5rem;
  font-size: 1rem;
  font-weight: 600;
  border-top: 1px solid rgba(80, 76, 76, 0.209);
}

.ask-questions {
  flex-grow: 1;
  overflow-y: auto;
}

.ask-questions::-webkit-scrollbar {
  width: 4px;
}

.ask-questions::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 3px;
}

.ask-questions::-webkit-scrollbar-track {
  background: transparent;
  border-radius: 4px;
}



.conv-item {
  background-color: transparent;
  color: rgb(51, 51, 51);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  border-left: 3px solid transparent;
  padding: 0.85rem 1rem;
  transition: 0.2s ease-in-out;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.conv-item:hover {
  background: rgba(0, 0, 0, 0.03);
}

.conv-item.active {
  background: rgba(74, 144, 226, 0.15);
  color: #1a1a1a;
  border-left: 3px solid #4a90e2;
}

.conv-item .conv-name {
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.conv-item .conv-status {
  font-size: 11px;
  color: #28a745;
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 2px;
}

.ask-sidebar-footer {
  padding: 5px;
  border-top: 1px solid var(--color-border-light);
}

.footer-links {
  list-style: none;
  padding: 0 16px;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: space-between;
  font-size: 0.75rem;
}

.footer-links a {
  color: #000;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #007bff;
}

/* Main Content */
.ask-main {
  background: transparent;
  display: flex;
  flex-direction: column;
  padding: 10px 0 0 20px;
  flex: 1;
  transition: margin-left 0.4s ease;
  overflow: hidden;
  min-height: 0;
}

.ask-main.closed {
  margin-left: 0;
}

.hamburger {
  display: flex;
  width: 32px;
  height: 32px;
  position: absolute;
  left: 320px;
  top: 80px;
  /* adjusted for navbar height */
  padding: 6px;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  border: 1px solid #868691;
  transition: left 0.4s ease;
  background: #ffffff;
  cursor: pointer;
  z-index: 1001;
  color: #000;
}

.hamburger.closed {
  left: 6px;
}

.hamburger span {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hamburger:hover {
  background: #f1f1f1;
}

.ask-main-content {
  margin: 0 auto;
  max-width: 100%;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  overflow: hidden;
  min-height: 0;
}

.welcome-top {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  overflow: hidden;
  min-height: 0;
}

#chat-messages {
  flex: 1;
  width: 100%;
  /* max-width: 800px; */
  overflow-y: auto;
  padding: 0 1rem 20px 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

#chat-messages::-webkit-scrollbar {
  width: 4px;
}

#chat-messages::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 3px;
}

#chat-messages::-webkit-scrollbar-track {
  background: transparent;
  border-radius: 4px;
}

.chat-container {
  max-width: 800px;
  width: 100%;
}

.message {
  display: flex;
  gap: 12px;
  max-width: 95%;
  margin-bottom: 8px;
  align-items: flex-start;
}

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

.message.ai {
  align-self: flex-start;
  flex-direction: row;
}

.ai-avatar,
.user-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.ai-avatar {
  background: rgba(76, 42, 149, 0.05);
  border-color: rgba(76, 42, 149, 0.1);
}

.user-avatar {
  background: rgba(0, 0, 0, 0.03);
}

/* Demo Conversation Styles */
.demo-conversation {
  width: 100%;
  max-width: 800px;
  padding: 0 1rem;
  margin-bottom: 20px;
}

.demo-conversation .demo-message {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.demo-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.demo-conversation.light .demo-avatar {
  border: 1px dotted #3333334d;
  background: linear-gradient(135deg,
      rgba(74, 144, 226, 0.15) 0%,
      rgba(138, 43, 226, 0.15) 100%);
}

.demo-content {
  max-width: 600px;
}

.demo-text {
  background: transparent;
  border-radius: 18px;
  padding: 0.7rem;
  margin-bottom: 0;
  font-size: 0.92rem;
}

.demo-conversation.light .demo-text {
  border: 1px dotted #3333334d;
}

.demo-text-shine {
  display: inline-block;
  font-weight: 600;
  background-size: 400% auto;
  background-position: 0% center;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: textShine 6s ease-in-out infinite;
}

.demo-conversation.light .demo-text-shine {
  background-image: linear-gradient(90deg,
      #334dc0 0%,
      #6f8cff 25%,
      #334dc0 50%,
      #6f8cff 75%,
      #334dc0 100%);
}

.demo-support {
  display: inline-block;
  margin-top: 0.35rem;
  font-size: 0.8rem;
  opacity: 0.9;
  color: #666;
}

.support-link {
  background: none;
  border: none;
  padding: 0;
  margin-left: 4px;
  font: inherit;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 600;
  color: #334dc0;
}

@keyframes textShine {
  0% {
    background-position: 0% center;
  }

  50% {
    background-position: 100% center;
  }

  100% {
    background-position: 0% center;
  }
}

.message {
  width: 100%;
}

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

.message.ai {
  align-self: flex-start;
  flex-direction: row;
}

.bubble {
  /* max-width: 85%; */
  border-radius: 12px;
  padding: 0.5em 0.7em;
  font-size: 0.9rem;
  font-weight: 400;
  line-height: 1.6;
  font-family: Inter, sans-serif, Avenir, Helvetica, Arial;
}

.user .bubble {
  background: #4c2a95;
  color: #fff;
  /* box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); */
}

.ai .bubble {
  background: rgb(228, 230, 235);
  color: #000;
  /* border: 1px solid #eef0f5; */
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.ai .bubble.svg-only {
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
}

.chart-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-top: 5px;
}

.chart-wrapper svg {
  width: 400px;
  max-width: 100%;
  height: auto;
}

@media (max-width: 600px) {
  .chart-wrapper svg {
    width: 340px;
  }
}

.chart-label {
  font-size: 0.75rem;
  color: #6b7280;
  margin-bottom: 4px;
  font-weight: 500;
  font-family: Inter, sans-serif;
  opacity: 0.8;
}

.ai-sparkle {
  position: absolute;
  left: 0;
  top: 0;
  width: 36px;
  height: 36px;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4c2a95;
  font-size: 14px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

/* Welcome Section */
.welcome-container {
  text-align: center;
}

.welcome-container h1 {
  font-size: 32px;
  font-weight: 700;
  color: #4c2a95;
  margin-bottom: 10px;
}

.welcome-container p {
  font-size: 18px;
  color: #555;
  font-weight: 500;
}

.welcome-container p span {
  color: #4c2a95;
  font-weight: 700;
}

/* Starter Prompts Grid - Matching screenshots exactly */
.prompt-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  max-width: 700px;
  margin: 0 auto;
}

.prompt-card {
  background: rgba(0, 0, 0, 0.02);
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 16px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
  transition: all 0.2s;
  text-align: left;
}

.prompt-card:hover {
  background: #f0f4ff;
  border-color: #1a3bb5;
  transform: translateY(-2px);
}

.prompt-card-header {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 15px;
  color: #000;
}

.prompt-card-header i {
  font-size: 18px;
}

.prompt-card small {
  font-size: 13px;
  color: #666;
  font-weight: 400;
  padding-left: 28px;
}

/* Colors for starter cards */
/* .card-popular {
  border-left: 4px solid #f2c94c;
}

.card-chart {
  border-left: 4px solid #f2994a;
}

.card-yoga {
  border-left: 4px solid #4c2a95;
}

.card-personalize {
  border-left: 4px solid #2d9cdb;
} */

/* Right Sidebar Refinements */
.ask-sidebar-right {
  width: 320px;
  border-left: 1px solid var(--color-border-light);
  padding: 15px;
}

.section-title {
  font-size: 14px;
  font-weight: 700;
  margin: 0 0 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.view-more {
  font-size: 11px;
  color: #4a90e2;
  background: rgba(74, 144, 226, 0.1);
  padding: 3px 8px;
  border-radius: 4px;
  cursor: pointer;
}

.birth-profile-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 12px;
  background: transparent;
  border: 1px solid transparent;
  cursor: pointer;
  margin-bottom: 4px;
  transition: all 0.2s;
}

.birth-profile-item:hover {
  background: #f1f1f1;
}

.birth-profile-item.selected {
  background: rgba(74, 144, 226, 0.1);
  border: 1px solid #4a90e2;
}

.birth-profile-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  overflow: hidden;
  background: #e0e0e0;
}

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

.birth-profile-info {
  flex: 1;
}

.birth-profile-info strong {
  display: block;
  font-size: 13px;
  color: var(--color-black);
}

.birth-profile-info p {
  font-size: 11px;
  color: #777;
  margin: 0;
}

.info-icon {
  font-size: 16px;
  color: #999;
}

/* Recommended Questions List */
.questions-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.question-btn {
  background: #f9f9f9;
  border: 1px solid rgba(0, 0, 0, 0.06);
  padding: 10px 12px;
  border-radius: 8px;
  text-align: left;
  cursor: pointer;
  transition: all 0.2s;
}

.question-btn:hover {
  background: #fff;
  border-color: #4a90e2;
  transform: translateX(4px);
}

.question-btn .category {
  display: inline-block;
  font-size: 9px;
  font-weight: 700;
  color: #2d6cb5;
  background: rgba(74, 144, 226, 0.1);
  padding: 2px 6px;
  border-radius: 4px;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.question-btn .text {
  display: block;
  font-size: 12px;
  color: #333;
  font-weight: 500;
  line-height: 1.3;
}

/* Sidebar Toggle Handle */
.sidebar-toggle-handle {
  position: absolute;
  left: 320px;
  top: 80px;
  width: 35px;
  height: 35px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 1001;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

/* Chat Input Form - New Layout */
.chat-input-form {
  width: 100%;
  max-width: 800px;
  padding: 1rem 1rem 0.2rem 1rem;
  display: flex;
  flex-direction: column;
  align-self: center;
}

.chat-input-container {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border-radius: 16px;
  padding: 5px 5px 3px;
  transition: box-shadow 0.2s ease;
  border: none;
  box-shadow: 0px 0px 3px 1px #1e6dbc;
}

.chat-input-container:focus-within {
  box-shadow: 0px 0px 4px 1px #1e6dbc;
}

.input-field {
  border: none;
  outline: none;
  line-height: 1.5;
  color: #333a44;
  padding: 0.4rem 0.2rem;
  font-family: inherit;
  font-size: 14px;
  resize: none;
  background: transparent;
  min-height: 50px;
  max-height: 160px;
  overflow-y: auto;
}

.input-field::placeholder {
  color: #9ca3af;
}

.action-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.action-buttons {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.selected-profile.readonly {
  display: inline-flex;
  align-items: center;
  border-radius: 0.55rem;
  padding: 0.45rem;
  font-size: 14px;
  font-weight: 500;
  cursor: default;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  color: #374151;
}

.profile-name {
  display: flex;
  align-items: center;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.icon-button {
  background: transparent;
  border: 1px solid #676e7e8b;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  border-radius: 0.55rem;
  padding: 0.45rem;
  font-size: 14px;
  font-weight: 500;
  transition: background 0.2s ease;
}

.icon-button:hover {
  background: #f3f4f6;
}

.button-title {
  font-size: 12px;
  margin-left: 4px;
}

.submit-button {
  background: none;
  border: none;
  border-radius: 50%;
  padding: 0.5rem;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #333a44;
}

.submit-button:hover {
  background: #f3f4f6;
}

.branding-footer {
  margin-top: 5px;
  width: 100%;
  text-align: center;
  font-size: 10px;
  color: #666;
}


/* Mobile Responsiveness */
@media (max-width: 1150px) {
  .ask-sidebar-right {
    display: none;
  }
}

@media (max-width: 768px) {
  .headers {
    padding: 0 10px;
    height: 50px;
  }

  .logo {
    width: 80px;
  }

  .logo img {
    padding-left: 5px;
  }

  .right {
    gap: 8px;
  }

  .token {
    padding: 2px 6px;
  }

  .credits-data {
    font-size: 11px !important;
  }

  .credits-info {
    font-size: 7px !important;
  }

  .nav-icon-btn {
    width: 32px;
    height: 32px;
  }

  .profile {
    gap: 4px;
  }

  .profile-img-container {
    width: 35px;
    height: 35px;
  }

  .profile .details {
    display: none;
  }

  .ask-page-v2 {
    height: calc(100vh - 50px);
    position: relative;
  }

  .ask-sidebar {
    position: fixed;
    top: 50px;
    left: -100%;
    width: 280px;
    height: calc(100% - 50px);
    background: #fff;
    z-index: 2000;
    transition: left 0.3s ease;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
  }

  .ask-sidebar.active {
    left: 0;
  }

  .ask-main {
    padding: 10px 0 0 0;
  }

  .hamburger {
    left: 10px !important;
    top: 10px !important;
    width: 30px;
    height: 30px;
  }

  .hamburger.active {
    left: 290px !important;
  }

  .welcome-container h1 {
    font-size: 1.5rem;
  }

  .welcome-container p {
    font-size: 1rem;
  }

  .prompt-cards {
    grid-template-columns: 1fr;
    max-width: 100%;
    padding: 0 10px;
  }

  .prompt-card {
    padding: 12px;
  }

  .prompt-card-header {
    font-size: 14px;
  }

  .prompt-card small {
    font-size: 12px;
  }

  .chat-input-form {
    padding: 0.5rem;
  }

  .chat-input-container {
    border-radius: 12px;
  }

  .input-field {
    font-size: 13px;
    min-height: 40px;
  }

  .action-buttons {
    gap: 0.2rem;
  }

  .icon-button {
    padding: 0.3rem;
    font-size: 12px;
  }

  .selected-profile.readonly {
    padding: 0.3rem;
  }

  .profile-name {
    font-size: 11px !important;
  }

  .message {
    max-width: 92%;
  }

  .bubble {
    padding: 10px 14px;
    font-size: 13px;
  }
}

@media (max-width: 576px) {
  html,
  body {
    overflow: hidden !important;
  }

  .user-dashboard {
    height: 100dvh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
  }
  .headers {
    height: 48px;
    padding: 0 8px;
  }

  .logo {
    width: 70px;
  }

  .right {
    gap: 4px;
  }

  .token {
    gap: 4px;
    padding: 2px 4px;
  }

  .credits-data {
    font-size: 10px !important;
  }

  .credits-info {
    font-size: 6px !important;
  }

  .nav-icon-btn {
    width: 28px;
    height: 28px;
  }

  .profile {
    margin-left: 5px !important;
  }

  .profile-img-container {
    width: 28px;
    height: 28px;
  }

  .profile .details button {
    font-size: 10px;
  }

  .ask-page-v2 {
    height: calc(100vh - 48px);
  }

  .ask-sidebar {
    top: 48px;
    height: calc(100% - 48px);
    width: 320px;
  }

  .hamburger {
    width: 28px;
    height: 28px;
    top: 1px !important;
    left: 3px !important;
  }

  .hamburger.active {
    left: 320px !important;
  }

  .welcome-container h1 {
    font-size: 1.2rem;
    margin-top: 10px;
  }

  .welcome-container p {
    font-size: 0.9rem;
  }

  .prompt-cards {
    gap: 10px;
    margin-top: 20px !important;
  }

  .prompt-card {
    padding: 10px;
  }

  .prompt-card-header {
    font-size: 13px;
    gap: 6px;
  }

  .prompt-card small {
    font-size: 11px;
  }

  .demo-conversation {
    padding: 0 5px;
    margin-bottom: 10px;
  }

  .demo-avatar {
    width: 30px;
    height: 30px;
  }

  .demo-text {
    font-size: 0.85rem;
    padding: 0.5rem;
  }

  .chat-input-form {
    padding: 0.2rem 0.4rem;
  }

  .chat-input-container {
    border-radius: 10px;
  }

  .input-field {
    font-size: 12px;
    min-height: 36px;
  }

  .icon-button {
    padding: 0.25rem;
    gap: 3px;
  }

  .button-title {
    font-size: 10px;
  }

  .profile-name {
    font-size: 10px !important;
  }

  #chat-messages {
    padding: 0 0.5rem 10px 0.5rem;
    gap: 0.75rem;
  }

  .message {
    max-width: 95%;
    gap: 8px;
  }

  .bubble {
    padding: 8px 12px;
    font-size: 12.5px;
  }

  .ai-avatar,
  .user-avatar {
    width: 28px;
    height: 28px;
  }
}