/* Blog Content Reset */
#blog-content {
    margin: 0;
    padding: 0;
    line-height: 1.6; /* Adjust for better readability */
    color: #fff; /* Default text color */
  }
  
  /* Reset headings */
  #blog-content h1,
  #blog-content h2,
  #blog-content h3,
  #blog-content h4,
  #blog-content h5,
  #blog-content h6 {
    margin: 1.5em 0 0.5em;
    line-height: 1.2;
    color: #fff; /* Adjust as per your theme */
  }
  
  /* Reset paragraphs */
  #blog-content p {
    margin: 1em 0;
  }
  
  /* Reset lists */
  #blog-content ul,
  #blog-content ol {
    margin: 1em 0;
    padding-left: 1.5em;
  }
  
  /* Reset links */
  #blog-content a {
    color: #8929FE; /* Link color */
    text-decoration: underline;
  }
  #blog-content a:hover {
    color: #4C2976; /* Hover color */
  }
  
  #blog-content strong{
    display: block;
    font-size: 18px;
    margin: 13px 0;
  }
  
  /* Reset images */
  #blog-content img {
    max-width: 100%; /* Make images responsive */
    height: auto;
    display: block;
    margin: 1em auto;
  }
  
  /* Blockquotes */
  #blog-content blockquote {
    margin: 1.5em 0;
    padding: 0.5em 1em;
    border-left: 4px solid #ccc;
    color: #fff;
    background-color: #f9f9f9;
  }
  
  /* Tables */
  #blog-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 1em 0;
  }
  
  #blog-content table th,
  #blog-content table td {
    padding: 0.5em;
    border: 1px solid #ddd;
    text-align: left;
  }
  
  #blog-content table th {
    background-color: #f4f4f4;
    font-weight: bold;
  }
  
  /* Code blocks */
  #blog-content pre,
  #blog-content code {
    font-family: 'Courier New', Courier, monospace;
    background-color: #f4f4f4;
    padding: 0.2em 0.4em;
    border-radius: 4px;
  }
  
  #blog-content pre {
    overflow-x: auto;
    padding: 1em;
    border: 1px solid #ddd;
    background-color: #f9f9f9;
    margin: 1em 0;
  }
  
  /* Horizontal rules */
  #blog-content hr {
    border: 0;
    border-top: 1px solid #ccc;
    margin: 2em 0;
  }
  
  .botIcon {
    bottom: 5px;
    right: 65px;
    position: fixed;
    z-index: 9999;
}