<style>
/* Container for each worksheet */
.worksheet {
  max-width: 100%;
  text-align: center;
  margin: 20px auto;
}

/* Image container to enforce max width and center */
.worksheet img {
  max-width: 100%;
  width: 100%;
  height: auto;
  max-width: 450px;
  display: block;
  margin: 0 auto;
  border-radius: 8px;
}

/* Download button */
.download-btn {
  display: inline-block;
  margin-top: 12px;
  padding: 10px 20px;
  background-color: #007BFF;
  color: white;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
  transition: background-color 0.3s;
}

/* Hover effect */
.download-btn:hover {
  background-color: #0056b3;
}
</style>
