/* Bibliography container */
.bibbox {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(10, 10, 10, 0.08), 0 0 0 1px rgba(10, 10, 10, 0.06);
  color: #4a4a4a;
  display: block;
  padding: 1.5rem 2rem;
}

/* Individual bibliography entries */
.bibbox p {
  margin: 0;
  padding: 1rem 1.25rem;
  border-left: 3px solid #3a9bdc;
  background: #f8fafe;
  border-radius: 4px;
  line-height: 1.6;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.bibbox p + p {
  margin-top: 1rem;
}

.bibbox p:hover {
  border-left-color: #1a6faa;
  background: #eef5fb;
}

/* DOI/URL links within bibliography */
.bibbox a {
  word-break: break-all;
}
