.formatted-content {
    max-height: 600px; /* Limit height */
    overflow-y: auto; /* Enable vertical scrolling */
    padding: 10px;
    background: white;
    border-radius: 5px;
    font-size: 16px;
    line-height: 1.6;
    text-align: left;
  }
  
  .formatted-content h1, 
  .formatted-content h2, 
  .formatted-content h3 {
    font-weight: bold;
    margin-top: 15px;
  }
  
  .formatted-content p {
    margin-bottom: 10px;
  }
  
  .formatted-content b, 
  .formatted-content strong {
    font-weight: bold;
  }
  
  .formatted-content::-webkit-scrollbar {
    width: 6px;
  }
  
  .formatted-content::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 3px;
  }
  