/* Add or modify styles for the 'Get Your Book' button */

/* Example: Assuming the button has a class like '.get-book-button' */
.get-book-button {
  display: inline-block; /* Ensure padding works */
  background-color: #007bff; /* Primary color */
  color: white;
  padding: 12px 24px;
  font-size: 1.1em;
  font-weight: bold;
  text-align: center;
  text-decoration: none; /* Remove underline if it's an anchor */
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease, opacity 0.3s ease;
}

.get-book-button:hover {
  background-color: #0056b3; /* Darker shade on hover */
  opacity: 0.9;
}

.get-book-button:active {
  background-color: #004085; /* Even darker on click */
}

/* Add more specific selectors or styles if needed based on the HTML structure in book_details_form.html */
