.book-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
}

.book-card {
  display: flex;
  gap: 1.5rem;
  background-color: var(--bg-color-secondary, rgba(255, 255, 255, 0.05));
  border: 1px solid var(--border-color, rgba(255, 255, 255, 0.1));
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.book-cover {
  flex-shrink: 0;
  width: 120px;
}

.book-cover img {
  width: 100%;
  height: auto;
  border-radius: 4px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.book-cover-placeholder {
  width: 100%;
  aspect-ratio: 2 / 3;
  background-color: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
  text-align: center;
}

.book-details {
  flex-grow: 1;
}

.book-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 0.2rem;
}

.book-title {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-color);
}

.book-author {
  margin: 0 0 1rem 0;
  font-size: 0.95rem;
  color: var(--text-color-light, #aaa);
}

.book-status {
  font-size: 0.8rem;
  padding: 0.2rem 0.5rem;
  border-radius: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.status-read { background-color: rgba(46, 204, 113, 0.2); color: #2ecc71; }
.status-reading { background-color: rgba(52, 152, 219, 0.2); color: #3498db; }
.status-dnf { background-color: rgba(231, 76, 60, 0.2); color: #e74c3c; }

.book-review {
  font-size: 0.95rem;
  line-height: 1.6;
}

.book-review p:last-child {
  margin-bottom: 0;
}

@media (max-width: 600px) {
  .book-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .book-header {
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
  }
}
