/** Shopify CDN: Minification failed

Line 1019:15 Unexpected "-->"

**/
/* assets/storybook-form.css */
/* Import Google Fonts */
@import url("https://fonts.googleapis.com/css2?family=Fredoka+One:wght@400&family=Comic+Neue:wght@400;700&display=swap");

@font-face {
  font-family: "Hey Comic Custom"; /* A unique name for your custom font */
  src: url("http://localhost:4566/storybook-images/fonts/Hey%20Comic.otf")
    format("opentype"); /* Use 'opentype' for OTF, 'truetype' for TTF */
  font-weight: normal; /* Assuming your single font file is 'normal' weight */
  font-style: normal;
  font-display: swap; /* Tells the browser to display fallback text while font loads */
}

.spinner.small-spinner {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 3px solid #ddd;
  border-top: 3px solid #333;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  margin: 10px auto;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

body {
  margin: 0;
  overflow-x: hidden;
}

.storybook-generator-app {
  font-family: "Comic Neue", cursive;
  background: linear-gradient(135deg, #fff5f0, #ffe8dc);
  min-height: auto;
  padding: 15px 0;
}

.storybook-form-container {
  background: linear-gradient(145deg, #fff, #fff5f0);
  border-radius: 25px;
  padding: 20px;
  max-width: 950px;
  margin: 10px auto;
  box-shadow: 0 10px 30px rgba(224, 84, 32, 0.2), 0 5px 10px rgba(0, 0, 0, 0.1);
  border: 3px solid #e05420;
  position: relative;
  padding-bottom: 30px;
}

.storybook-form-container::before {
  /* content: ""; */
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(224, 84, 32, 0.05) 0%,
    transparent 70%
  );
  animation: float 6s ease-in-out infinite;
}

.storybook-form-container h2 {
  text-align: center;
  color: #e05420;
  margin-bottom: 25px;
  font: 2em "Fredoka One", cursive;
  text-shadow: 2px 2px 4px rgba(224, 84, 32, 0.2);
  position: relative;
  z-index: 1;
}

.form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  align-items: flex-end;
}
.form-field {
  flex: 1;
  position: relative;
}
.form-field.full-width {
  flex: 1 1 100%;
}

.form-field label {
  display: block;
  margin-bottom: 8px;
  font: bold 14px "Fredoka One", cursive;
  color: #e05420;
  text-shadow: 1px 1px 2px rgba(224, 84, 32, 0.1);
}

.form-field input,
.form-field textarea {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid #ffb399;
  border-radius: 15px;
  font: 15px "Comic Neue", cursive;
  box-sizing: border-box;
  background: linear-gradient(145deg, #fff, #fff9f7);
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05);
}
.form-field input.input-error,
.form-field textarea.input-error {
  border-color: red;
  box-shadow: 0 0 5px rgba(255, 0, 0, 0.5);
}

.form-field textarea {
  min-height: 80px;
  resize: vertical;
}
.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: #e05420;
  box-shadow: 0 0 15px rgba(224, 84, 32, 0.3),
    inset 0 2px 4px rgba(0, 0, 0, 0.05);
  transform: translateY(-2px);
}

.guide-selection {
  display: flex;
  gap: 25px;
  justify-content: center;
  margin-top: 15px;
}
.guide-option {
  cursor: pointer;
  border: 2px solid #ffb399;
  border-radius: 20px;
  padding: 15px;
  text-align: center;
  transition: all 0.4s ease;
  flex: 1;
  max-width: 160px;
  background: linear-gradient(145deg, #fff, #fff9f7);
  position: relative;
  overflow: hidden;
  pointer-events: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

.guide-option::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(224, 84, 32, 0.1),
    transparent
  );
  transition: left 0.5s ease;
  z-index: 0;
}

.guide-option:hover::before {
  left: 100%;
}
.guide-option:hover,
.guide-option.selected {
  border-color: #e05420;
  background: linear-gradient(145deg, #fff9f7, #fff);
  transform: translateY(-6px) scale(1.05);
  box-shadow: 0 8px 25px rgba(224, 84, 32, 0.3);
}

.guide-option h4,
.guide-option p {
  position: relative;
  z-index: 2;
  margin: 4px 0;
}
.guide-option h4 {
  color: #e05420;
  font: 1.1em "Fredoka One", cursive;
}
.guide-option p {
  color: #ff6b35;
  font: bold 10px;
}

.guide-image-placeholder {
  width: 70px;
  height: 70px;
  background: linear-gradient(145deg, #fff9f7, #ffebe0);
  border: 2px dashed #ffb399;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  overflow: hidden;
  transition: all 0.3s ease;
}

.guide-option:hover .guide-image-placeholder {
  border-color: #e05420;
  background: linear-gradient(145deg, #ffebe0, #fff9f7);
}

.guide-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 0;
  display: block;
  object-position: center;
  position: relative;
  z-index: 2;
  pointer-events: none;
}
.placeholder-text {
  display: none;
}

#generateBookButton {
  background: linear-gradient(45deg, #e05420, #ff6b35, #ff8c42);
  color: white;
  padding: 15px 25px;
  border: none;
  border-radius: 30px;
  font: 16px "Fredoka One", cursive;
  cursor: pointer;
  width: 100%;
  margin-top: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 6px 20px rgba(224, 84, 32, 0.4), 0 2px 8px rgba(0, 0, 0, 0.2);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

#generateBookButton::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.6s ease;
}

#generateBookButton:hover::before {
  left: 100%;
}
#generateBookButton:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 30px rgba(224, 84, 32, 0.5), 0 4px 12px rgba(0, 0, 0, 0.3);
}
.btn-icon {
  font-size: 18px;
  animation: bounce 2s infinite;
}
.btn-icon:last-child {
  animation-delay: 0.2s;
}

/* My Created Books Section */
.my-created-books-section {
  max-width: 950px;
  margin: 40px auto 20px auto;
  text-align: center;
  font-family: "Comic Neue", cursive;
}

.my-created-books-section .section-title {
  font: 2em "Fredoka One", cursive;
  color: #e05420;
  margin-bottom: 25px;
  text-shadow: 2px 2px 4px rgba(224, 84, 32, 0.2);
}

.my-created-books-section .initial-message,
.no-books-message {
  font-size: 1.1em;
  color: #777;
  padding: 20px;
}

.small-spinner {
  border: 3px solid rgba(224, 84, 32, 0.2);
  border-left-color: #e05420;
  width: 25px;
  height: 25px;
  margin: 0 5px;
  vertical-align: middle;
  display: inline-block;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

/* .customer-books-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
  min-height: 150px;
  align-items: flex-start;
  padding: 15px 0;
} */

.book-card {
  background: linear-gradient(145deg, #fff, #fff9f7);
  border: 2px solid #ffb399;
  border-radius: 15px;
  padding: 15px;
  text-align: center;
  width: 220px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.book-card:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 8px 25px rgba(224, 84, 32, 0.3);
  border-color: #e05420;
}

.book-cover {
  width: 100%;
  height: 180px;
  object-fit: contain;
  border-radius: 10px;
  margin-bottom: 15px;
  border: 1px solid #e0e0e0;
  background-color: #f9f9f9;
}

.book-card h3 {
  font: 1.2em "Fredoka One", cursive;
  color: #333;
  margin-bottom: 8px;
  word-break: break-word;
}

.book-card p {
  font-size: 0.9em;
  color: #666;
  margin-bottom: 15px;
  word-break: break-word;
}

.book-card .book-price {
  font-size: 1.1em;
  font-weight: bold;
  color: #008060;
  margin-bottom: 15px;
}

.book-preview-button {
  background: linear-gradient(45deg, #e05420, #ff6b35, #ff8c42);
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 20px;
  font: 0.9em "Fredoka One", cursive;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.book-preview-button:hover {
  background: linear-gradient(45deg, #c44619, #e05420, #ff6b35);
  transform: translateY(-2px);
  box-shadow: 0 5px 12px rgba(0, 0, 0, 0.3);
}

.book-preview-button:disabled {
  background-color: #cccccc;
  cursor: not-allowed;
  box-shadow: none;
  transform: none;
}

/* CSS for Messages (loading, success, error) */
.generation-status-message {
  color: #007bff;
  font-weight: bold;
  margin-top: 15px;
  animation: pulse 1.5s infinite ease-in-out;
}

.success-message {
  color: #28a745;
  font-weight: bold;
  margin-top: 15px;
}

.error-message {
  color: #dc3545;
  font-weight: bold;
  margin-top: 15px;
}

/* Animations */
@keyframes pulse {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
  100% {
    opacity: 1;
  }
}
@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-8px);
  }
  60% {
    transform: translateY(-4px);
  }
}
@keyframes float {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-10px) rotate(1deg);
  }
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Icon styles */
.icon-book-open::before {
  content: "📖";
  margin-right: 0.1em;
  font-size: 1.1em;
}
.icon-sparkle::before {
  content: "✨";
}
.icon-star::before {
  content: "🌟";
}
.icon-fairy::before {
  content: "🧚‍♀️";
}
.icon-palette::before {
  content: "🎨";
}
.icon-books::before {
  content: "📚";
}
.icon-arrow-left::before {
  content: "←";
  margin-right: 5px;
}
.icon-arrow-right::before {
  content: "→";
  margin-left: 5px;
}

/* Media Queries for form and book list responsiveness */
@media (max-width: 768px) {
  .storybook-form-container {
    margin: 10px;
    padding: 15px;
    max-width: none;
  }
  .form-row {
    flex-direction: column;
    gap: 10px;
    margin-bottom: 10px;
  }
  .form-field {
    flex: none;
    width: 100%;
  }
  .form-field label {
    font-size: 13px;
    margin-bottom: 4px;
  }
  .form-field input,
  .form-field textarea {
    padding: 8px 10px;
    font-size: 13px;
    border-radius: 12px;
  }
  .form-field textarea {
    min-height: 60px;
  }
  .guide-selection {
    flex-direction: row;
    align-items: center;
    gap: 10px;
    margin-top: 8px;
  }
  .guide-option {
    max-width: 200px;
    padding: 12px;
    border-radius: 15px;
  }
  .guide-image-placeholder {
    width: 60px;
    height: 60px;
    margin-bottom: 8px;
    border-radius: 12px;
  }
  .guide-option h4 {
    font-size: 1em;
    margin: 6px 0 2px;
  }
  .guide-option p {
    font-size: 9px;
  }
  .placeholder-text {
    display: none;
  }
  .guide-img {
    width: 60px;
    height: 60px;
  }
  #generateBookButton {
    padding: 12px 20px;
    font-size: 15px;
    margin-top: 10px;
    border-radius: 25px;
  }
  .btn-icon {
    font-size: 16px;
  }

  /* My Created Books Section mobile adjustments */
  .my-created-books-section {
    margin: 20px 10px;
    padding: 15px;
    border-radius: 20px;
  }
  .my-created-books-section .section-title {
    font-size: 1.5em;
    margin-bottom: 15px;
  }
  /* .customer-books-list {
    flex-direction: column;
    gap: 15px;
  } */
  .book-card {
    width: 90%;
    max-width: 250px;
    padding: 12px;
  }
  .book-cover {
    height: 150px;
    margin-bottom: 10px;
  }
  .book-card h3 {
    font-size: 1.1em;
    margin-bottom: 5px;
  }
  .book-card p,
  .book-card .book-price {
    font-size: 0.85em;
    margin-bottom: 10px;
  }
  .book-preview-button {
    padding: 8px 15px;
    font-size: 0.8em;
  }
  .book-container > div {
    width: auto;
  }
  /* book innrer */
  /* .book-page.cover-page.active-page.centered-page
  {left: 0 !important;} */
  #book-container {
    height: 270px !important;
  }
  .book-page {
    width: 255px !important;
    height: 255px !important;
  }
  .book-page.right-page {
    width: 255px !important;
    height: 255px !important;
    left: 268px !important;
    padding: 0;
  }
  .book-page {
    padding: 0 !important;
  }
  .buy-book-section {
    max-width: inherit !important;
  }
  .storybook-generator-app {
    min-height: 50vh;
  }
  .book-page.back-cover-page.active-page.centered-page {
    left: 0 !important;
  }
}

/* ======================================= */
/* CSS for Storybook Preview Section       */
/* ======================================= */
/* General container for the entire preview section */
#storybook-preview-container {
  display: none; /* Keep hidden by default, JS will change this to 'block' or 'flex' */
  text-align: center; /* Centers block-level children like .book-viewer */
  width: 100%;
  max-width: 1200px; /* Limit overall width */
  margin: 20px auto; /* Center the container itself */
  padding: 20px;
  background-color: #fcece3; /* Light orange background, matches your images */
  border-radius: 15px;
  /* box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1); */
  box-sizing: border-box; /* Include padding/border in element's total width/height */
}

/* Back button specific styles */
.back-nav {
  text-align: left; /* Align back button to the left */
  margin-bottom: 20px;
}
.back-button {
  background-color: #e05420; /* Orange color from your images */
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 25px;
  font-size: 1em;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
  display: inline-flex; /* Allows icon and text alignment */
  align-items: center;
  gap: 8px; /* Space between icon and text */
}
.back-button:hover {
  background-color: #c94a1b;
  transform: translateY(-2px);
}

/* Book Viewer container */
.book-viewer {
  display: flex;
  flex-direction: column; /* Stack book and controls vertically */
  align-items: center; /* Center book and controls horizontally */
  margin-bottom: 30px;
}

/* Loading Spinner (basic styling) */
.spinner {
  border: 4px solid rgba(0, 0, 0, 0.1);
  border-top: 4px solid #ff8c5f; /* Spinner color */
  border-radius: 50%;
  width: 40px;
  height: 40px;
  animation: spin 1s linear infinite;
  margin: 50px auto; /* Centered in its parent */
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* The actual book container where pages are inserted */
#book-container {
  /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2); */
  margin: 0 auto;
  border-radius: 8px;
  background-color: transparent; /* Allows page backgrounds to show through */
  position: relative; /* **CRITICAL: Establishes positioning context for children** */
  transform-style: preserve-3d; /* For future page-flip animations if desired */
  transition: width 0.3s ease, height 0.3s ease, box-shadow 0.3s ease;
  /* WIDTH AND HEIGHT WILL BE SET BY JAVASCRIPT DYNAMICALLY */
}

/* Individual Book Page */
.book-page {
  position: absolute; /* **CRITICAL: Allows precise placement within #book-container** */
  box-sizing: border-box; /* Include padding and border in sizing */
  border: 1px solid #dcdcdc; /* Subtle page border */
  background: linear-gradient(
    145deg,
    #ffffff,
    #f9f9f9
  ); /* Light gradient for depth */
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); /* Soft shadow for page lift */
  overflow: hidden; /* **CRITICAL: Prevents content from spilling out of page** */
  display: flex; /* **HIDDEN BY DEFAULT, JS WILL MAKE IT 'flex' FOR ACTIVE PAGES** */
  border-radius: 5px;
  padding: 0px; /* **CRITICAL: Inner padding for content** */
  flex-direction: column; /* Content inside page stacks vertically */
  justify-content: center; /* Vertically center content */
  align-items: center; /* Horizontally center content */
  text-align: center;
  transition: opacity 0.3s ease, transform 0.3s ease, left 0.3s ease,
    z-index 0.3s ease;
  background-color: white;
  /* WIDTH, HEIGHT, TOP, LEFT WILL BE SET BY JAVASCRIPT */
}

.book-page .page-image {
  width: 100%;
  height: 100%;
  object-fit: cover; /* This makes the image cover the entire area, cropping if necessary */
  display: block; /* Remove any inline-block spacing */
}

/* You had a 'full-image' class for cover/back cover, ensure it's styled */
.book-page .page-image.full-image {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensures it covers the entire page */
  display: block;
}

/* Active Pages (visible pages) */
.book-page.active-page {
  display: flex; /* Makes the page visible and enables flexbox centering */
  z-index: 2; /* Ensures active pages are on top of inactive ones */
}

/* Positioning for Two-Page Spreads */
.book-page.left-page {
  border-right: none; /* Removes the border between left and right pages */
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.book-page.right-page {
  border-left: none; /* Removes the border between left and right pages */
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.book-page.centered-page {
  /* For single pages like covers */
  /* JS will calculate 'left' to center it */
}

/* Styling for content inside pages */
.book-page .page-content {
  padding: 20px;
  text-align: center;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
}

.book-page .page-content h1 {
  font-size: 2em;
  margin-bottom: 10px;
  color: #e05420; /* Primary accent color */
}

.book-page .page-content p {
  font-family: "Comic Neue", cursive; /* Apply Comic Neue */
  font-size: 1.25em; /* A little bigger than 1.1em, adjust as needed */
  line-height: 1.6;
  margin-bottom: 1em;
  color: #222; /* A little darker than default or #333 */
}

.book-page img.page-image {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain; /* Ensures image fits without being cropped */
  display: block; /* Removes extra space below image */
  margin: auto; /* Centers image horizontally */
}

/* Book Controls (Previous/Next buttons) */
.book-controls {
  display: flex;
  align-items: center;
  gap: 20px; /* Space between buttons and page number */
  margin-top: 20px;
}
.page-btn {
  background-color: #e05420;
  color: white;
  padding: 10px 25px;
  border: none;
  border-radius: 25px;
  font-size: 1.1em;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease,
    box-shadow 0.2s ease;
}
.page-btn:hover {
  background-color: #c94a1b;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.page-btn:disabled {
  background-color: #888;
  color: #eee;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}
#pageNumber {
  font-family: "Fredoka One", cursive; /* Or your chosen display font */
  font-size: 1.2em;
  color: #e05420;
  min-width: 100px; /* Ensure enough space for longer page numbers */
}

/* Buy Book Section */
.buy-book-section {
  margin-top: 30px;
  padding: 20px;
  background: linear-gradient(145deg, #fff9f7, #ffebe0);
  border: 2px solid #ffb399;
  border-radius: 20px;
  box-shadow: 0 5px 15px rgba(224, 84, 32, 0.1);
  text-align: center;
  max-width: inherit;
  width: 100%;
  font-family: "Comic Neue", cursive;
  color: #e05420;
  font-size: 1.1em;
  margin-left: auto; /* Center with flex parent, if any */
  margin-right: auto;
}
.buy-book-section p {
  margin-bottom: 15px;
  font-weight: bold;
}
.buy-book-section #addToCartButton {
  background: linear-gradient(
    45deg,
    #008060,
    #00a880
  ); /* Green shades for purchase */
  color: white;
  padding: 12px 25px;
  border: none;
  border-radius: 25px;
  font: 16px "Fredoka One", cursive;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 128, 96, 0.3);
  transition: all 0.3s ease;
}
.buy-book-section #addToCartButton:hover {
  background: linear-gradient(45deg, #00664d, #008f6b);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 128, 96, 0.4);
}
.buy-book-section #addToCartButton:disabled {
  background: #cccccc;
  cursor: not-allowed;
  box-shadow: none;
  transform: none;
}

/* Media Queries for Responsiveness */
@media (max-width: 768px) {
  #storybook-preview-container {
    padding: 15px;
    margin: 0;
  }
  .back-button,
  .page-btn {
    padding: 8px 15px;
    font-size: 0.9em;
  }
  #pageNumber {
    font-size: 1em;
  }
  .book-page {
    padding: 15px;
  }
  .book-page .page-content h1 {
    font-size: 1.5em;
  }
  .book-page .page-content p {
    font-size: 1em;
  }
  .buy-book-section {
    padding: 15px;
    font-size: 1em;
  }
  .buy-book-section #addToCartButton {
    padding: 10px 20px;
    font-size: 14px;
  }
}

  .book-card {
    border: 1px solid #ccc;
    border-radius: 12px;
    padding: 16px;
    margin: 12px;
    text-align: center;
    width: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #fafafa;
    box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.05);
  }

  .cover-img {
    display: block;
    width: 100%;
    height: auto;
    margin-bottom: 8px;
  }

  .book-preview-button {
    background-color: #4caf50;
    color: white;
    padding: 8px 16px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }

  .book-preview-button:hover {
    background-color: #45a049;
  }

.failed-button {
  background-color: #f44336; /* red background */
  color: white;
  font-weight: bold;
  padding: 8px 16px;
  border: 2px solid #b71c1c; /* dark red border */
  border-radius: 6px;
  cursor: not-allowed;
  opacity: 0.9;
}

.generating-button {
  background-color: #e0e0e0; /* light gray background */
  color: #212121; /* dark text */
  font-weight: bold;
  padding: 8px 16px;
  border: 2px solid #616161; /* dark gray border */
  border-radius: 6px;
  cursor: progress;
}


  .book-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    padding: 20px;
  }

  h3 {
    margin-top: 0;
    margin-bottom: 8px;
    font-size: 1rem;
    text-align: center;
  }

<!-- Book List -->
<div cla
