/*Suchergebnisse - Buchinfo-Kachel Layout mit Buttons rechts*/
.loan-card-button {
  display: flex;
  position: relative;
  background-color: #f0f0f0;
  border-radius: 10px;
  overflow: hidden;
  height: 250px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/*Suchergebnisse - Container für Buttons */
.loan-actions {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  display: flex;
  flex-direction: column; /* <--- Buttons übereinander */
  gap: 0.5rem; /* vertikaler Abstand zwischen Buttons */
}

/*Suchergebnisse - Allgemeiner Buttonstil */
.loan-actions button {
  padding: 0.4rem 0.8rem;
  font-size: 0.85rem;
  border-radius: 5px;
  font-weight: bold;
  border: none;
  align-items: center;
}

/*Suchergebnisse - Trennlinie unter Verlag */
.loan-divider {
  width: 100%;
  border: none;
  border-top: 1px solid #ccc;
  margin: 0.5rem 0;
}

/*Suchergebnisse - Grüner Reservieren-Button */
.reserve-button {
  background-color: #4CAF50;
  color: white;
  justify-content: center;  
}

/*Suchergebnisse - Grauer Bookmark-Button */
.bookmark-button {
  background-color: #e0e0e0;
  color: #333;    
  justify-content: center;  
}