.eLibraryDefaultPadding {
  padding-top: 50px;
  padding-bottom: 25px;
}

.search-container {
  position: relative;
  width: 100%;
  margin: 0 auto;
}

.search-icon {
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
  color: #888;
  font-size: 16px;
  pointer-events: none;
}

.book-card {
  border: none;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background-color: #fff;
  margin-bottom: 20px;
}

.book-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.book-img-wrapper {
  height: 130px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f7f7f7;
}

.book-card img {
  /* max-height: 100%;
    max-width: 100%; */
  object-fit: cover;
  transition: transform 0.4s ease;
}

.book-card:hover img {
  transform: scale(1.05);
}

.book-title {
  /* font-size: 1.1rem; */
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: #333;
}

.card-body {
  padding: 1.25rem;
}

.btn-dark {
  width: 100%;
  padding: 8px 0;
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: 25px;
  transition: background 0.3s ease, transform 0.2s ease;
}
