html {
  font-family: "Source Sans Pro", sans-serif;
  font-size: larger;
  font-weight: 300;
}

a {
  color: black;
  text-decoration: none;
}

a:hover,
a:visited,
a:active {
  color: black;
  text-decoration: underline;
}

#content {
  margin: 0 auto;
  text-align: left;
  max-width: 1400px;
  padding: 32px;
  line-height: 1.6em;
}

.left-align {
  text-align: left;
  margin: 0 auto;
  max-width: 1400px;
}

.avatar {
  border-radius: 100%;
  width: 150px;
  height: 150px;
}

.icons {
  list-style-type: none;
  font-size: xx-large;
  padding: 0;
  display: flex;
  justify-content: space-between;
  width: 80%;
  max-width: 320px;
  margin: 1em auto;
}

.icons li {
  display: inline;
  width: 42px;
}

.icons a {
  color: #000;
}

.icons a:hover {
  color: #1565c0;
}
.card {
  background: #f5f5f5;
  padding: 1em 1.5em;
  margin: 1.5em 0;
  border-left: 4px solid #c8d9ed;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  border-radius: 6px;
}
.nav-container {
  position: relative;
  padding: 1em;
  text-align: right;
}

#menu-toggle {
  background: none;
  border: none;
  font-size: 1.5em;
  cursor: pointer;
}

.top-bar {
  list-style-type: none;
  margin: 0;
  padding: 0;
  position: absolute;
  right: 1em;
  background: white;
  border: 1px solid #ddd;
  border-radius: 5px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.top-bar li {
  margin: 0;
}

.top-bar li a {
  display: block;
  padding: 0.5em 1em;
  color: #333;
}

.top-bar li a:hover {
  background-color: #f0f0f0;
}

.hidden {
  display: none;
}
.publication {
  /* Card visuals come from .card. Keep only publication-specific spacing if needed */
  margin-bottom: 24px;
}

.paper-title {
  margin: 0;
  font-size: 1.2em;
  font-weight: bold;
  color: #2c3e50;
}

.paper-link a {
  color: #000;
  font-size: 0.95em;
}

.authors {
  margin: 4px 0;
  font-size: 0.95em;
}

.authors strong {
  color: #000;
  font-weight: 600;
}

.venue {
  font-size: 0.9em;
  color: #555;
}

.award {
  color: #d35400;
  font-weight: 500;
}
.project-card h3 {
  margin-top: 0;
  color: #2c3e50;
}

.project-card a {
  color: #000;
}
.paw {
  position: absolute;
  font-size: 16px;
  pointer-events: none;
  animation: fadeOut 1s ease forwards;
}

@keyframes fadeOut {
  0% {
    opacity: 1;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(0.5);
  }
}
