
.book-card {
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
  margin: 10px;
  transition: transform 0.3s;
  width:250px ;
}
.book-card:hover {
  transform: scale(1.05);
}
.book-image {
  height: 200px;
  object-fit: cover;
}
.book-title {
  font-size: 1rem;
  font-weight: bold;
}
.book-author {
  font-size: 0.9rem;
  color: #666;
}
.btn-details {
  background-color: #816F63;
  color: #fff;
  width: 100%;
  margin-top: 10px;
  border: none;
}
.sidebar {
  font-size: 1rem;
  font-weight: bold;
}

.modal-body img#bookImage {
  max-width: 200px; /* Ajuste conforme necessário */
  max-height: 200px;
  display: block;
  margin: 0 auto;
}

.custom-close-btn {
  background: none;
  border: none;
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
}
.custom-close-btn svg {
  color: #333; /* Ajuste a cor conforme necessário */
  width: 20px;
  height: 20px;
}


