
/* Bookworm Button Styles - Matches Index Page Gradient and Font */

.bookworm-button {
  display: inline-block;
  padding: 10px 20px;
  margin: 10px 0;
  font-size: 1rem;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  border-radius: 5px;
  background: linear-gradient(to right, #91c788, #11998e);
  color: white;
  transition: background 0.3s ease, transform 0.2s ease;
}

.bookworm-button:hover {
  background: linear-gradient(to right, #11998e, #91c788);
  transform: translateY(-2px);
}

.bookworm-outline-button {
  display: inline-block;
  padding: 10px 20px;
  margin: 10px 0;
  font-size: 1rem;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  border-radius: 5px;
  color: #11998e;
  border: 2px solid #11998e;
  background: transparent;
  transition: background 0.3s ease, color 0.3s ease;
}

.bookworm-outline-button:hover {
  background: #11998e;
  color: white;
}

.bookworm-button-small {
  display: inline-block;
  padding: 6px 12px;
  margin: 5px 0;
  font-size: 0.85rem;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  border-radius: 5px;
  background: linear-gradient(to right, #91c788, #11998e);
  color: white;
  transition: background 0.3s ease, transform 0.2s ease;
}

.bookworm-button-small:hover {
  background: linear-gradient(to right, #11998e, #91c788);
  transform: translateY(-2px);
}

/* Bookworm Buttons Styles (Main, Outline, Small) */
/* --- (your existing button styles here) --- */

/* -------------------------------------------------- */
/* Bookworm Button Group + Responsive Mobile Stacking */
.bookworm-button-group {
  text-align: center;
  margin-top: 2rem;
  margin-bottom: 3rem;
}

.bookworm-button-group a {
  margin: 1.5rem;
  display: inline-block;
}

/* Mobile Responsive: Stack buttons vertically under 600px */
@media (max-width: 600px) {
  .bookworm-button-group a {
    display: block;
    margin: 1rem auto;
  }
}

