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

.sidebar {
    background-color: #000;
    color: #fff;
    width: 300px;
    padding: 20px;
    height: 100vh;
    position: fixed;
}

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

.sidebar h1 {
    font-size: 26px;
    line-height: 1.2;
}

.sidebar .links {
    font-size: 14px;
    margin: 10px 0;
}

.sidebar nav a {
    display: block;
    color: #fff;
    margin: 5px 0;
    text-decoration: none;
}

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

.content {
    margin-left: 320px;
    padding: 40px;
    max-width: 800px;
}

.content h2 {
    color: #111;
}

.content a {
    color: #bb0055;
    text-decoration: none;
}

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

.news li {
    margin-bottom: 10px;
}
.pub-list {
  list-style: none;
  padding-left: 0;
  margin-top: 0;
}

.pub-item {
  margin-bottom: 64px; /* Increased margin */
  display: flex;
  flex-direction: column;
}

.pub-title {
  font-weight: normal;
  color: #bb0055;
  font-size: 1.08em;
  margin-bottom: 2px;
}


.pub-item em {
  color: #666;
  font-size: 0.98em;
  margin-top: 2px;
}

.pub-links {
  display: flex;
  gap: 6px;
}

.pub-links a {
  color: #bb0055;
  background: #fff0fa;
  border: 1px solid #bb0055;
  border-radius: 4px;
  padding: 2px 8px;
  font-size: 0.95em;
  margin-right: 6px;
  text-decoration: none;
  transition: background 0.2s;
}

.pub-item a:hover {
  background: #ffe6f3;
  text-decoration: underline;
}
.pub-authors {
  font-size: 0.97em;
  color: #333;
  margin: 4px 0;
}

.pub-authors b {
  font-weight: bold;
  color: #111;
}


.pub-links {
  display: flex;
  gap: 6px; /* Adjust the spacing between the links as needed */
}

.pub-links a {
  /* Add any specific styling for the links here, if needed */
}

