body {
  font-family: Arial, sans-serif;
  margin: 0;
  background-color: #f5f5f5;
  color: #333;
}

.container {
  display: flex;
  max-width: 1000px;
  margin: 0 auto;
  background-color: #fff;
}

.left {
  width: 260px;
  background-color: #e0e0e0;
  padding: 20px;
  box-sizing: border-box;
  flex-shrink: 0;
}

.profile-pic {
  width: 100%;
  border-radius: 50%;
  margin-bottom: 15px;
}

.left h1 {
  margin: 0 0 10px;
  font-size: 1.2em;
}

.short-bio {
  font-size: 0.9em;
  line-height: 1.5em;
  margin: 10px 0 20px 0;
}

.contact {
  font-size: 0.9em;
  margin-top: 20px;
}

.contact a {
  color: #0066cc;
  text-decoration: none;
  display: block;
  margin-bottom: 5px;
}

.contact a:hover {
  text-decoration: underline;
}

.right {
  flex: 1;
  padding: 20px;
  box-sizing: border-box;
}

h2 {
  margin-top: 20px;
  font-size: 1.2em;
}

a {
  color: #0066cc;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Typography for content sections */
.right #research-interests-container,
.right #positions-container,
.right #biography-container,
.right #skills-container,
.right #awards-container,
.right #teaching-container {
  font-family: 'Lora', serif;
  font-size: 1em;
  line-height: 1.7;
  color: #333;
  margin-bottom: 18px;
}

/* Alignment for positions */
#positions-container .position-list {
  display: grid;
  grid-template-columns: 160px auto;
}

#positions-container .date {
  font-weight: bold;
  font-size: 15px;
  color: #555;
}

#positions-container .role {
  margin-bottom: 5px;
}

.affiliation a {
    display: inline-flex;
    align-items: center;
    margin-bottom: 0.3rem;
    text-decoration: none;
    color: #0077b6;
    font-weight: normal; /* Remove bold styling */
    transition: color 0.3s ease;
}

.affiliation a:hover {
    color: #005f7f;
}

.affiliation i {
    margin-right: 0.4rem;
}