/* General Font Settings */
html, body, h1, h2, h3, h4, h5, h6 {
    /* font-family: "Lato", sans-serif; */
    /* font-family: "Roboto", sans-serif; */
    /* font-family: "Arial", sans-serif; */
    font-family: "Verdana", sans-serif;
  }
  
  body {
    font-size: 14px; /* This will apply to all text in the body */
  }

  
  
  /* Sidebar Styling */
  .w3-sidebar {
    z-index: 3;
    width: 250px;
    top: 43px;
    bottom: 0;
    height: inherit;
  }
  
  /* No Underline and Color Change on Hover */
  .no-underline {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
  }
  
  .no-underline:hover {
    color: #007bff; /* Change this to your desired color */
  }
  
  /* Hover Effect for Links with href */
  a[href]:hover {
    color: #007bff; /* Change this to your desired hover color */
  }
  
  /* Fold/Unfold toggle icon rotation */
  .folded .fa-chevron-down {
    transform: rotate(-90deg);
  }

  #publication ul li {
    margin-bottom: 10px; /* This increases the space between the list items */
  }

  #research ul {
    margin-bottom: 10px; /* This increases the space between the list items */
  }
  


  #home li {
    margin-bottom: 5px; /* This increases the space between the list items */
  }