html {
  scroll-behavior: smooth;
}


h3 {
    text-align: left;
  }
  
  #summary {
    border: 1px solid #ccc;
    color: black;
    background-color: white;
    padding: 10px;
    margin-left: auto; 
    margin-right: auto;
    width: 100%;
    max-width: 800px;
    min-width: 800px;
    }

    @media (max-width: 867px) {
        #summary {
          width: 100%;
          max-width: 100%;
          min-width: 0;
        }
      }
  
  #summary h4 {
    font-weight: bold;
    margin-bottom: 5px;
  }

  
  
  /* Added CSS for the side menu */
  #sideMenu {
    position: fixed;
    top: 0;
    left: -250px; /* Initially hide the side menu on the left */
    width: 250px;
    height: 100vh;
    background-color: #000000;
    padding: 10px;
    transition: left 0.3s ease-in-out;
    z-index: 9999;
  }
  
  #sideMenu.active {
    left: 0;
  }
  
  #sideMenu a {
    display: block;
    margin-bottom: 10px;
    text-decoration: none;
    color: rgb(255, 255, 255);
    background-color:black;;
    margin-bottom: 15px;
    font-weight: bold;
    transition: font-size 0.2s, color 0.05s;

  }

  #sideMenu a:hover {
    color: cyan;
    background-color: gray;
    font-size: 25px;
    transition: font-size 0.2s, color 0.05s;
  }
  
  #menuIcon {
    position: fixed;
    top: 20px;
    left: 20px;
    font-size: 50px;
    cursor: pointer;
    z-index: 9999;
    color: rgb(255, 255, 255); /* Change the color of the menu icon */
    background-color: black;
  }

  #menuIcon:hover {
      color:cyan;
  }
  
  #closeBtn {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 24px;
    cursor: pointer;
    z-index: 9999;
  }
  
  /* Added CSS to push content to the right when side menu is open */
  #contentContainer {
    transition: margin-left 0.3s ease-in-out;
    margin-left: 50px; /* Add extra space between side menu and content */
    margin-right: 20px;
  }
  
  #contentContainer.active {
    margin-left: 220px; /* Adjust the margin to accommodate extra space */
  }
  
  /* CSS for the copy button */
  #copyButton {
    font-size: 14px;
    padding: 5px 10px;
    width: 400px; 
    margin-left: auto;
    margin-right: auto;
  }
  
  #Authors {
      background-color:#000000;
      text-align: center;
  }

  #citations, .citations {
    background-color:#000000;
    text-align: center;
}

#Authors p, #citations p {
  color: #a1a1a1;
}

h4, h3 {
  color: black !important;
  background-color: rgb(224, 224, 224);
}

/* new changes */


/* Dark theme styles for h4 and h3 - will only apply when data-theme is set to 'dark' */
html[data-theme="dark"] h4,
html[data-theme="dark"] h3 {
  background-color: black;
  color: white !important;
  /* Add any other dark theme styles here */
}


#coloredspace {
    background-color: black;
}

#mode-toggle:hover {
  color:cyan;
  font-size: 22px;
  transition: font-size 0.1s;
  background-color: #2b2b2b;
}

#mode-toggle:active {
  color:black;
  font-size: 22px;
  transition: font-size 0.1s;
  background-color:gray;
}
  
  
  #mode-toggle {
    font-weight: bold;
    cursor: pointer;
    color: white;
    padding: 5px;
    font-size: 20px;
    margin-right: 15%;
    padding: 10px;
    background-color:#1a1a1a;
    border-radius: 5px;
    transition: font-size 0.2s;
    text-align: center;
  }

  
  
  .navbar {
    background-color: black;
    padding-top: 30px;
    padding-bottom: 5px;
  }

  .navbar h1 {
    margin-left: auto;
    margin-right: auto;
    letter-spacing: 3px;
    color: white;
    font-size: 45px;
  }

  .aboutuslist li {
    list-style: none;
    display: inline-block;
    margin-left: 5px;
    margin-right: 5px;
    text-align: center;
  }

  .footer2 h4 {
    color:white !important;
    background-color: black !important;
  }
  
 
  
  

 
  
  
  