body {
	  font-family: 'Roboto ', sans-serif;
	  font-weight: 100;
  }


/* Email Pseudo link  */
.pseudo-link {
  color: #1EAEDB; }
.pseudo-link:hover {
  color: #0FA0CE; 
	cursor: pointer;
}



/* Google scholar fontawesome */
.icon-scholar {
  content: url('../misc/google-scholar.svg');
  height: 1em;
  width: auto;
}

Add this .custom-image-size {
  width: 50%; /*  Adjust the percentage value to your desired width */
  height: auto; /*  This will maintain the aspect ratio of the image */
}

.sidebar-container {
  /* position: absolute; */
  left: 0;
  top: 70px; /* Adjust depending on navbar height */
  padding-top: 100px;
  width: 25%;
  padding-left: 20px;
  z-index: 0; /* Ensures it doesn't cover the navbar */
  box-sizing: border-box;
}

.sticky-sidebar {
      position: fixed;
      top: 120px; /* aligns better with the top nav bar */
      text-align: center; /* this centers everything inside */
    }

.main-content-container {
      margin-left: calc(7% + 20px);
      padding-right: 10px;  /* or reduce this value */
      margin-right: 0;      /* ensure no extra margin */
      box-sizing: border-box;
    }


/* Add a black background color to the top navigation */
.topnav {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: #333;
  z-index: 1000;
  overflow: hidden;
}

/* Style the links inside the navigation bar */
.topnav a {
  float: left;
  color: #f2f2f2;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
}

/* Change the color of links on hover */
.topnav a:hover {
  background-color: #ddd;
  color: black;

}

/* Add a color to the active/current link */
.topnav a.active {
  background-color: #777;
  color: white;
}

button {
  background: none!important;
  border: none;
  padding: 0!important;
  /*optional*/
  font-family: 'Poppins', helvetica;
  font-size: 15px;
  font-weight: 300;
  line-height: 20px;
  letter-spacing: 0.02em;
  overflow-x: hidden;
  /*input has OS specific font-family*/
  color: #898989;
  /*text-decoration: underline;*/
  cursor: pointer;
}


.img-circle {
    border-radius: 50%;
    width: 215px;  /* Ensure width and height are the same */
    height: 215px;
    box-sizing: border-box;
}


@media (max-width: 768px) {
  .layout-wrapper {
    flex-direction: column;
  }

  .sidebar-container {
    position: static;
    width: 100%;
    padding-left: 0;
    padding-top: 0;
    margin-bottom: 20px;
    margin-top: 60px;
    box-sizing: border-box;
  }

  .sticky-sidebar {
    position: static;
    top: auto;
    text-align: center;
  }

  .sticky-sidebar img {
    width: 40vw;
    height: 40vw;
    max-width: 215px;
    max-height: 215px;
    margin-top: 20px;
  }

  .sticky-sidebar h5,
  .sticky-sidebar table,
  .sticky-sidebar button {
    margin-left: 10px;
    text-align: left;
  }

  .main-content-container {
    width: 100%;
    margin-left: 0;
    padding: 10px;
    box-sizing: border-box;
  }
}



@media (max-height: 700px) and (min-width: 769px) {
  .sticky-sidebar {
    max-height: calc(100vh - 120px);
    overflow-y: auto;
    padding-right: 10px;
  }
}

.layout-wrapper {
  display: flex;
  align-items: flex-start;
}


@media (min-width: 769px) {
  .main-content-container {
    max-width: none;
    padding-right: 10px;
    margin-right: 0;
  }

  .main-content-container .row {
    margin-left: 0;
  }

  .main-content-container .column,
  .main-content-container .columns {
    margin-left: 0;
    width: 100%;
    float: none;
  }
}


body {
  overflow-x: hidden;
}

.u-full-width {
  width: 100%;
  box-sizing: border-box;
}
