/* Ensure body takes full width */
body {
  margin: 0;
  padding: 0;
  width: 100%;
  font-family: Arial, "Microsoft YaHei UI", sans-serif;
}

:lang(zh), :lang(zh-CN), :lang(zh-Hans) {
  font-family: "Microsoft YaHei UI", sans-serif;
}

/* Reduce extra padding in the main container */
main {
  padding-top: 5px; /* Reduce top padding */
  padding-bottom: 5px; /* Reduce bottom padding */
  margin: 0 auto;
  max-width: 100%; /* Adjust as needed */
  margin-left: 1rem;
  margin-right: 1rem;
  text-align: left;
}

/* Reduce space above and below titles */
h1, h2, h3 {
  margin-top: 5px; 
  margin-bottom: 5px; 
}


/* Reduce navbar spacing */
.navbar {
  padding: 5px 10px;
  height: 45px;
}

/* Make text more compact */
p {
  margin-top: 5px;
  margin-bottom: 5px;
}


.team-member {
  background-color: #f9f9f9;
  padding: 1rem;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.team-photo {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 0.75rem;
}


