/* Custom styles */
table {
  font-size: 0.8em;
}

.book-header-banner {
  text-align: center;   /* Centers the image */
  background-color: #f0f2f5; /* Light gray shading */
  padding: 20px 0;      /* Add space above and below */
}

.book-header-banner img {
  max-width: 300px;     /* Shrinks the image nicely */
  height: auto;         /* Prevents squishing */
  display: block;
  margin: 0 auto;
}

.book-footer {
  font-size: 0.85rem;
  color: #555;
  margin-top: 40px;
  padding: 15px 30px;
  border-top: 1px solid #ddd;
  background-color: #f0f2f5; /* Light gray footer background */
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap; /* Allows wrapping on smaller screens */
}

.footer-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-logo {
  height: 25px;  /* Small, clean logo */
  width: auto;
}

.footer-right a {
  color: #004080; /* BYU blue */
  text-decoration: none;
  margin: 0 5px;
}

.footer-right a:hover {
  text-decoration: underline;
}

/* Center everything on mobile */
@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    text-align: center;
    gap: 5px;
  }
}


