/* МОБІЛЬНІ ФІКСИ - додано в кінці файлу */
@media (max-width: 768px) {
  /* ФІКСИМО МОДАЛЬНЕ ВІКНО НА МОБІЛЬНИХ */
  .consultant-modal {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    height: 100vh;
    height: 100dvh; /* dynamic viewport для iOS */
    padding: 0;
    align-items: stretch;
    overflow: hidden;
  }
  
  .consultant-modal .modal-content {
    width: 100%;
    height: 100%;
    max-width: none;
    max-height: none;
    border-radius: 0;
    margin: 0;
    border: none;
    overflow: hidden;
  }
  
  /* ФІКСИМО ЧАТ ПЛОЩИНУ */
  .chat-messages {
    flex: 1 1 auto;
    min-height: 0;
    padding: 15px;
    /* Залишаємо місце для input + клавіатура */
    padding-bottom: 80px;
  }
  
  /* ФІКСИМО INPUT ОБЛАСТЬ */
  .chat-input {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 10px 15px;
    background: #1a1a1a;
    border-top: 1px solid #333;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.5);
  }
  
  .chat-form {
    gap: 10px;
  }
  
  .chat-form input {
    font-size: 16px; /* ВАЖЛИВО - запобігає зуму на iOS */
    padding: 12px 15px;
    border-radius: 20px;
  }
  
  .chat-form button {
    padding: 12px 15px;
    border-radius: 20px;
    min-width: 60px;
    font-size: 18px;
  }
  
  /* СКОРОЧУЄМО HEADER */
  .modal-header {
    padding: 10px 15px;
    flex-shrink: 0;
  }
  
  .modal-title {
    font-size: 16px;
  }
}

/* СПЕЦІАЛЬНО ДЛЯ ДУЖЕ МАЛЕНЬКИХ ЕКРАНІВ */
@media (max-width: 480px) {
  .message-text {
    padding: 12px 16px;
    font-size: 14px;
    line-height: 1.4;
  }
  
  .message-content {
    max-width: 90%;
  }
  
  /* RAG елементи компактніше */
  .rag-action-btn {
    padding: 8px 12px;
    font-size: 12px;
    margin: 2px 3px;
  }
  
  .suggestion-btn {
    padding: 6px 12px;
    font-size: 11px;
  }
}
/* Consultant Page Styles */
.consultant-page {
  min-height: 100vh;
  background: linear-gradient(135deg, #0a0a0a, #1a1a1a);
  padding: 40px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.consultant-header {
  text-align: center;
  padding: 60px 40px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  border: 1px solid rgba(158, 255, 0, 0.2);
  backdrop-filter: blur(10px);
  max-width: 600px;
  width: 100%;
}

/* Modal Styles */
.consultant-modal {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.consultant-modal .modal-content {
    background: #1a1a1a;
    border: 1px solid #9eff00;
    border-radius: 15px;
    width: 90%;
    max-width: 900px;
    height: 85vh;
    max-height: 850px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    overflow: hidden; /* Важливо, щоб внутрішній скрол працював коректно */
}

.modal-header {
    padding: 15px 20px;
    border-bottom: 1px solid #333;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-title {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #9eff00;
    font-weight: bold;
}

.modal-avatar {
    font-size: 20px;
}

.modal-close {
    background: none;
    border: none;
    color: #b3adad;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 5px;
}

.modal-close:hover {
    color: #ff4444;
}

.chat-messages {
    flex: 1 1 0; /* Це змусить блок зайняти весь доступний простір */
    padding: 20px;
    overflow-y: auto; /* Додаємо скрол тільки для цього блоку */
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.chat-input {
    padding: 15px 20px;
    border-top: 1px solid #333;
}

.chat-form {
    display: flex;
    gap: 10px;
}

.chat-form input {
    flex: 1;
    padding: 10px 15px;
    background: #333;
    border: 1px solid #555;
    border-radius: 25px;
    color: white;
}

.chat-form button {
    padding: 10px 20px;
    background: #9eff00;
    color: black;
    border: none;
    border-radius: 25px;
    cursor: pointer;
}

.consultant-avatar {
  width: 100px;
  height: 100px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, #9eff00, #66ff00);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  box-shadow: 0 0 30px rgba(158, 255, 0, 0.5);
  animation: consultantFloat 3s ease-in-out infinite;
}

.consultant-title {
  font-size: 2.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, #9eff00, #66ff00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 10px;
}

.consultant-subtitle {
  color: #b3adad;
  font-size: 1.1rem;
  margin-bottom: 30px;
}

.session-info {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 20px;
}

.session-info-item {
  text-align: center;
}

.session-info-value {
  font-size: 1.2rem;
  font-weight: 700;
  color: #9eff00;
  display: block;
  margin-top: 5px;
}

.session-info-item span:first-child {
  font-size: 0.9rem;
  color: #b3adad;
}

.consultant-chat-button {
  background: linear-gradient(135deg, #9eff00, #66ff00);
  border: none;
  border-radius: 15px;
  padding: 15px 30px;
  color: #000;
  font-weight: 700;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 30px;
  box-shadow: 0 5px 15px rgba(158, 255, 0, 0.3);
}

.consultant-chat-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(158, 255, 0, 0.4);
}

.consultant-chat-button:active {
  transform: translateY(0);
}

@keyframes consultantFloat {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

.chat-title {
  font-size: 2.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, #9eff00, #66ff00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 10px;
}

.chat-subtitle {
  color: #b3adad;
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.chat-stats {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 20px;
}

.stat-item {
  text-align: center;
}

.stat-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: #9eff00;
  display: block;
}

.stat-label {
  font-size: 0.9rem;
  color: #b3adad;
  margin-top: 5px;
}

.chat-main {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 30px;
  margin-bottom: 30px;
}

.chat-messages {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  border: 1px solid rgba(158, 255, 0, 0.2);
  padding: 20px;
  min-height: 300px;
  max-height: 400px;
  overflow-y: auto;
  backdrop-filter: blur(10px);
  margin-bottom: 20px;
}

.quick-questions-section {
  margin-bottom: 20px;
}

.quick-questions-section h4 {
  color: #9eff00;
  font-size: 1rem;
  margin-bottom: 10px;
  font-weight: 600;
}

.messages {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.message {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  animation: slideIn 0.3s ease-out;
}

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

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

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

.message.user .message-avatar {
  background: linear-gradient(135deg, #9eff00, #66ff00);
  color: #000;
}

.message.assistant .message-avatar {
  background: linear-gradient(135deg, #666, #999);
  color: #fff;
}

.message-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.message.user .message-content {
  text-align: right;
  align-items: flex-end;
}

.message.assistant .message-content {
  width: 100%;
  max-width: 100%;
  display: flex;
  flex-direction: column;
}

.message-text {
  background: rgba(255, 255, 255, 0.1);
  padding: 15px 20px;
  border-radius: 20px;
  color: #fff;
  line-height: 1.5;
  word-wrap: break-word;
}

.message.user .message-text {
  background: linear-gradient(135deg, #9eff00, #66ff00);
  color: #000;
  border-bottom-right-radius: 5px;
}

.message.assistant .message-text {
  border-bottom-left-radius: 5px;
}

.message-time {
  font-size: 0.8rem;
  color: #b3adad;
  margin-top: 5px;
}

.typing-indicator {
  display: none;
  align-items: center;
  gap: 15px;
  animation: slideIn 0.3s ease-out;
}

.typing-dots {
  display: flex;
  gap: 5px;
  padding: 15px 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  border-bottom-left-radius: 5px;
}

.typing-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #9eff00;
  animation: typing 1.4s infinite ease-in-out;
}

.typing-dots span:nth-child(1) { animation-delay: -0.32s; }
.typing-dots span:nth-child(2) { animation-delay: -0.16s; }

@keyframes typing {
  0%, 80%, 100% {
    transform: scale(0);
    opacity: 0.5;
  }
  40% {
    transform: scale(1);
    opacity: 1;
  }
}

.chat-input {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  border: 1px solid rgba(158, 255, 0, 0.2);
  padding: 20px;
  backdrop-filter: blur(10px);
}

.chat-form {
  display: flex;
  gap: 15px;
  align-items: flex-end;
}

.message-input {
  flex: 1;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(158, 255, 0, 0.3);
  border-radius: 15px;
  padding: 15px 20px;
  color: #fff;
  font-size: 1rem;
  resize: none;
  min-height: 50px;
  max-height: 120px;
  transition: all 0.3s ease;
}

.message-input:focus {
  outline: none;
  border-color: #9eff00;
  box-shadow: 0 0 20px rgba(158, 255, 0, 0.3);
}

.message-input::placeholder {
  color: #b3adad;
}

.send-button {
  background: linear-gradient(135deg, #9eff00, #66ff00);
  border: none;
  border-radius: 15px;
  padding: 15px 25px;
  color: #000;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 100px;
}

.send-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(158, 255, 0, 0.4);
}

.send-button:active {
  transform: translateY(0);
}

.send-button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.chat-sidebar {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  border: 1px solid rgba(158, 255, 0, 0.2);
  padding: 30px;
  height: fit-content;
  backdrop-filter: blur(10px);
}

.sidebar-section {
  margin-bottom: 30px;
}

.sidebar-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #9eff00;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.quick-questions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.quick-question {
  background: rgba(158, 255, 0, 0.1);
  border: 1px solid rgba(158, 255, 0, 0.3);
  border-radius: 10px;
  padding: 12px 15px;
  color: #fff;
  text-align: left;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.9rem;
  line-height: 1.4;
}

.quick-question:hover {
  background: rgba(158, 255, 0, 0.2);
  border-color: #9eff00;
  transform: translateX(5px);
}

.session-info {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 15px;
  font-size: 0.9rem;
}

.session-info-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  color: #b3adad;
}

.session-info-item:last-child {
  margin-bottom: 0;
}

.session-info-value {
  color: #9eff00;
  font-weight: 600;
}

body.modal-open {
  overflow: hidden;
}

/* Language selector styles */
.lang-selector {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 30000;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.lang-box {
  background: #1a1a1a;
  border: 2px solid #9eff00;
  border-radius: 20px;
  padding: 40px;
  max-width: 500px;
  width: 90%;
  text-align: center;
  box-shadow: 0 20px 60px rgba(158, 255, 0, 0.3);
  animation: slideUp 0.3s ease;
}

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

.lang-title {
  font-size: 1.4rem;
  color: #9eff00;
  margin-bottom: 30px;
  font-weight: 600;
  line-height: 1.5;
}

.lang-actions {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.lang-actions button {
  padding: 15px 30px;
  font-size: 1.1rem;
  font-weight: 600;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 140px;
}

.lang-actions .btn-primary {
  background: linear-gradient(135deg, #9eff00, #66ff00);
  color: #000;
}

.lang-actions .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(158, 255, 0, 0.5);
}

.lang-actions .btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(158, 255, 0, 0.5);
  color: #9eff00;
}

.lang-actions .btn-secondary:hover {
  background: rgba(158, 255, 0, 0.1);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(158, 255, 0, 0.3);
}

@media (max-width: 480px) {
  .lang-box {
    padding: 30px 20px;
  }
  
  .lang-title {
    font-size: 1.1rem;
    margin-bottom: 20px;
  }
  
  .lang-actions {
    flex-direction: column;
  }
  
  .lang-actions button {
    width: 100%;
    padding: 12px 20px;
    font-size: 1rem;
  }
}

.chat-actions {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin-top: 30px;
}

.action-button {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(158, 255, 0, 0.3);
  border-radius: 10px;
  padding: 12px 20px;
  color: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.action-button:hover {
  background: rgba(158, 255, 0, 0.1);
  border-color: #9eff00;
  transform: translateY(-2px);
}

.action-button.primary {
  background: linear-gradient(135deg, #9eff00, #66ff00);
  color: #000;
  font-weight: 600;
}

.action-button.primary:hover {
  box-shadow: 0 5px 15px rgba(158, 255, 0, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
  .chat-main {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .chat-sidebar {
    order: -1;
  }
  
  .chat-title {
    font-size: 2rem;
  }
  
  .chat-stats {
    flex-direction: column;
    gap: 15px;
  }
  
  .message-content {
    max-width: 85%;
  }
  
  .chat-actions {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .chat-wrapper {
    padding: 0 10px;
  }
  
  .chat-header {
    padding: 20px;
  }
  
  .chat-messages,
  .chat-input,
  .chat-sidebar {
    padding: 20px;
  }
  
  .message-content {
    max-width: 90%;
  }
}

.rag-interface {
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid rgba(158, 255, 0, 0.2);
}

.rag-sources {
  margin-bottom: 15px;
}

.rag-sources-title {
  font-size: 12px;
  font-weight: 600;
  color: #9eff00;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.rag-source-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 12px;
  background: rgba(158, 255, 0, 0.1);
  border: 1px solid rgba(158, 255, 0, 0.2);
  border-radius: 8px;
  margin-bottom: 6px;
  font-size: 13px;
}

.source-title {
  color: #fff;
  flex: 1;
  margin-right: 10px;
}

.source-similarity {
  color: #9eff00;
  font-weight: 600;
  font-size: 11px;
}

.rag-suggestions {
  margin-bottom: 15px;
}

.rag-suggestions-title {
  font-size: 12px;
  font-weight: 600;
  color: #9eff00;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.suggestion-btn {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(158, 255, 0, 0.3);
  border-radius: 15px;
  padding: 8px 15px;
  color: #fff;
  font-size: 12px;
  cursor: pointer;
  margin: 4px 6px 4px 0;
  transition: all 0.2s ease;
  display: inline-block;
}

.suggestion-btn:hover {
  background: rgba(158, 255, 0, 0.2);
  border-color: #9eff00;
  transform: translateY(-1px);
}

.rag-actions {
  margin-bottom: 10px;
}

.rag-actions-title {
  font-size: 12px;
  font-weight: 600;
  color: #9eff00;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.rag-action-btn {
  border: none;
  border-radius: 12px;
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  margin: 4px 6px 4px 0;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.btn-primary {
  background: linear-gradient(135deg, #9eff00, #66ff00);
  color: #000;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(158, 255, 0, 0.4);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(158, 255, 0, 0.5);
  color: #9eff00;
}

.btn-secondary:hover {
  background: rgba(158, 255, 0, 0.1);
  transform: translateY(-1px);
}

.btn-info {
  background: rgba(0, 123, 255, 0.2);
  border: 1px solid rgba(0, 123, 255, 0.5);
  color: #7cc7ff;
}

.btn-info:hover {
  background: rgba(0, 123, 255, 0.3);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #b3adad;
}

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

.rag-debug {
  font-size: 10px;
  color: #666;
  font-style: italic;
  margin-top: 10px;
  padding: 5px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 5px;
}

.quote-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 20000;
}

.quote-modal .modal-content {
  background: #1a1a1a;
  border: 1px solid #9eff00;
  border-radius: 15px;
  width: 90%;
  max-width: 550px; /* Зменшено для кращого вигляду */
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  overflow: hidden;
}

.quote-modal .modal-header {
  padding: 20px;
  border-bottom: 1px solid #333;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.quote-modal .modal-header h3 {
  color: #9eff00;
  margin: 0;
  font-size: 1.2rem;
}

.quote-modal .modal-close {
  background: none;
  border: none;
  color: #b3adad;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 5px;
  line-height: 1;
}

.quote-modal .modal-close:hover {
  color: #ff4444;
}

.quote-form {
  padding: 20px;
  overflow-y: auto; /* Дозволяє скролити форму */
}

.quote-form .form-group {
  margin-bottom: 15px;
}

.quote-form label {
  display: block;
  color: #9eff00;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 5px;
}

.quote-form input,
.quote-form textarea {
  width: 100%;
  padding: 12px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(158, 255, 0, 0.3);
  border-radius: 8px;
  color: #fff;
  font-size: 14px;
  box-sizing: border-box;
}

.quote-form input:focus,
.quote-form textarea:focus {
  outline: none;
  border-color: #9eff00;
  box-shadow: 0 0 10px rgba(158, 255, 0, 0.3);
}

.quote-form textarea {
  resize: vertical;
  min-height: 80px;
}

.modal-actions {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  margin-top: 20px;
}

.modal-actions button {
  padding: 12px 20px;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

@media (max-width: 768px) {
  .rag-interface {
    margin-top: 10px;
    padding-top: 10px;
  }
  
  .rag-source-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
  }
  
  .source-similarity {
    align-self: flex-end;
  }
  
  .rag-action-btn {
    display: block;
    width: 100%;
    text-align: center;
    margin: 8px 0;
  }
  
  .quote-modal .modal-content {
    width: 95%;
    margin: 10px;
  }
  
  .modal-actions {
    flex-direction: column;
    gap: 12px;
  }
  
  .modal-actions button {
    width: 100%;
  }
}

/* Overrides for modal chat layout */
.consultant-modal .chat-messages {
  min-height: 0;
  max-height: none;
  margin-bottom: 0;
  flex: 1 1 auto;
}

.consultant-modal .chat-input {
  margin-top: 0;
}

/* Десктоп версія модалки */
@media (min-width: 1024px) {
    .consultant-modal .modal-content {
        width: 80%;
        max-width: 1000px;
        height: 90vh;
        max-height: 90vh;
    }
    
    .chat-messages {
        padding: 25px;
    }
}

/* Suggestions layout under assistant text */
.rag-suggestions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 10px;
  align-items: center;
}
.rag-suggestions .suggestion-btn {
  display: inline-flex;
  align-items: center;
}