html {
    scroll-behavior: smooth;
  }
body{
    background-color: #f8f8f8 !important;
}
#myBtn {
    display: none; /* Hidden by default */
    position: fixed; /* Fixed/sticky position */
    bottom: 120px !important; /* Place the button at the bottom of the page */
    right: 30px; /* Place the button 30px from the right */
    z-index: 300 !important; /* Make sure it does not overlap */
    border: none; /* Remove borders */
    outline: none; /* Remove outline */
    background-color: #555; /* Set a background color */
    color: white; /* Text color */
    cursor: pointer; /* Add a mouse pointer on hover */
    padding: 15px; /* Some padding */
    border-radius: 10px; /* Rounded corners */
    font-size: 18px; /* Increase font size */
  }
  
  #myBtn:hover {
    background-color: #555; /* Add a dark-grey background on hover */
  }

  #loadHTML{
    padding-bottom: 50px;
  }

  .scrollbar-black::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1);
    background-color: #F5F5F5;
    border-radius: 10px; 
  }
  
  .scrollbar-black::-webkit-scrollbar {
    width: 12px;
    background-color: #F5F5F5; 
  }
  
  .scrollbar-black::-webkit-scrollbar-thumb {
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1);
    background-color: #000; 
  }
  
  .scrollbar-black {
    scrollbar-color: #000 #F5F5F5;
  }