/* style.css */

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

.container {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: 220px;
  background-color: #003366;
  color: white;
  padding: 20px;
}

.sidebar h2 {
  font-size: 1.4em;
  margin-bottom: 1em;
}

.sidebar ul {
  list-style: none;
  padding: 0;
}

.sidebar li {
  margin-bottom: 1em;
}

.sidebar a {
  color: white;
  text-decoration: none;
}

.sidebar a.active,
.sidebar a:hover {
  text-decoration: underline;
}

.content {
  flex: 1;
  padding: 40px;
  background-color: white;
}

.profile-pic-large {
  width: 160px !important;
  border-radius: 8px;
  margin-left: 30px;
}

.top-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.text-left {
  flex: 1;
}

.name {
  font-size: 2.2em;
  font-weight: bold;
  margin-bottom: 5px;
}

.affiliation {
  font-size: 1.2em;
  color: #444;
}

.photo-right {
  flex-shrink: 0;
}

.contact h2,
.social h2 {
  margin-top: 30px;
  font-size: 1.4em;
}

.social-icons {
  list-style: none;
  display: flex;
  gap: 10px;
  padding-left: 0;
  margin-top: 10px;
}

.social-icons img {
  width: 24px;
  height: 24px;
}

