/* Kartu Buku */
.card {
  display: flex;
  align-items: center; /* Centers the title vertically */
  background-color: white;
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  max-width: 100%;
  margin: auto; /* Centers the card horizontally with margin */
}

.card-image {
  width: 150px; /* Fixed width for the image */
  height: 150px; /* Fixed height for the image */
  object-fit: scale-down;
  border-right: 1px solid #ddd;
}

.card-title {
  flex: 1;
  padding-left: 20px;
  font-size: 1.5rem;
  text-align: left; /* Centers the title text horizontally */
}

.card-title .card-author {
  font-size: 10pt;
}
/* Kartu Buku */