.project-detail .citation-container {
  margin-bottom: 1.5rem;
}

.citation {
  display: flex;
  background: var(--background);
  border-radius: var(--rounded);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.citation-image {
  flex-shrink: 0;
  width: 180px;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.citation-image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.citation-text {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: left;
}

.citation-title {
  font-weight: var(--semi-bold);
}

.citation-authors {
  font-size: 0.95rem;
  color: #333;
}

.citation-details {
  font-size: 0.9rem;
  color: #555;
}

.citation-description {
  margin-top: 0.5rem;
  color: #666;
  line-height: 1.4;
}

.show-bibtex {
  align-self: flex-start;
  margin-top: 0.5rem;
}

.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
  background: #fff;
  margin: 10% auto;
  padding: 20px;
  border: 1px solid #888;
  width: 80%;
  max-width: 600px;
}

.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}

.close:hover {
  color: black;
}

.copy-bibtex {
  margin-top: 10px;
  padding: 5px 10px;
  border-radius: 999px;
  background: var(--secondary, #ADE4F6);
  color: var(--text, #000);
  border: none;
  cursor: pointer;
}

.copy-bibtex:hover {
  background: var(--light-gray, #9BD2E8);
}

@media (max-width: 600px) {
  .citation {
    flex-direction: column;
  }
  .citation-image {
    width: 100%;
    height: 180px;
  }
}

/*# sourceMappingURL=citation.css.map */