 body {
        font-family: "Be Vietnam Pro", sans-serif;
        scroll-behavior: smooth;
      }
      .hero-bg {
        background-image: linear-gradient(
            to right,
            rgba(255, 255, 255, 0.692),
            rgba(255, 255, 255, 0.632)
          ),
          url("https://i.pinimg.com/1200x/be/5a/ef/be5aefd6fdd29fd8486280e9abe9617b.jpg");
        background-size: cover;
        background-position: center;
      }

.bot-content p {
    margin-bottom: 8px; /* Khoảng cách giữa các đoạn văn */
}

.bot-content p:last-child {
    margin-bottom: 0;
}

.bot-content ul {
    list-style-type: disc;
    padding-left: 20px; /* Thụt lề cho gạch đầu dòng */
    margin-top: 4px;
    margin-bottom: 8px;
}

.bot-content ol {
    list-style-type: decimal;
    padding-left: 20px;
    margin-top: 4px;
    margin-bottom: 8px;
}

.bot-content li {
    margin-bottom: 4px;
}

.bot-content strong, .bot-content b {
    font-weight: 700;
    color: #2563eb; /* Tô màu xanh cho từ khóa quan trọng (tùy chọn) */
}

/* Định dạng cho nội dung bên trong khung chat */
#chat-mesage ul {
  list-style-type: disc; /* Hiện dấu chấm tròn */
  padding: 1px; /* Thụt đầu dòng */
  margin-top: 8px;
  margin-bottom: 8px;
}

#chat-mesage ol {
  list-style-type: decimal; /* Hiện số 1. 2. 3. */
  padding: 1px; /* Thụt đầu dòng */
  margin-top: 8px;
  margin-bottom: 8px;
}

#chat-mesage li {
  margin-bottom: 4px; /* Khoảng cách giữa các ý nhỏ */
}

#chat-message strong, #chat-message b {
  font-weight: 600; /* Làm đậm các ý chính */
}

/* Tùy chỉnh thanh cuộn cho khung chat đẹp hơn */
#chat-messages::-webkit-scrollbar {
    width: 6px;
}
#chat-messages::-webkit-scrollbar-track {
    background: #f1f1f1; 
}
#chat-messages::-webkit-scrollbar-thumb {
    background: #cbd5e1; 
    border-radius: 10px;
}
#chat-messages::-webkit-scrollbar-thumb:hover {
    background: #94a3b8; 
}

