.container-book {
  display: flex;
  flex-wrap: wrap;
  justify-content: left;
  gap: 2rem;
  width: 90%;
  margin: auto;
  margin-left:280px;
}
.card-text{
  font-size: 14px;
    font-weight: 500;
    color: #403b3b;
    text-align: center;
    margin-top: 3px;
}

.text-body
{
  margin-top: 7px;
  
}
/* Responsive adjustments for smaller screens */
@media (max-width: 992px) {
  .container-book {
    justify-content: center; /* Center items on medium screens */
    gap: 1.5rem;
    margin-left: 0px;
  }
}

@media (max-width: 767px) {
  .container-book {
    display: block;
    width: 95%;
    margin-left: 0px;
  }

  .card-custom {
    width: 100%;
    margin: 0 auto 1rem auto; /* Stack items vertically with spacing */
    max-width: 200px; /* Optional max-width to prevent items from being too large */
  }
}

.download-button {
  display: inline-block;
  padding: 2px 8px;
  background-color: #2a569f; /* Choose a vibrant color */
  color: #fff;
  font-size: 15px;
  font-weight: bold;
  text-decoration: none;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s ease, transform 0.2s ease;
  margin-left: 21px;
  margin-left: 21px;
  margin-top: 7px;
}

.download-button:hover {
  background-color:#258ebb;
  transform: scale(1.05);
}

.download-button:active {
  background-color: #258ebb;
  transform: scale(0.98);
}
