.tabNav :global(.nav-link) {
  border-bottom: 2px solid #dee2e6;
  margin-right: 5px;
  color: #000;
}

.tabNav :global(.nav-link.active) {
  border: none !important;
  border-bottom: 1px solid #000 !important;
  font-weight: 600;
  background: transparent !important;
}
.tabNav :global(.nav-link) {
  border: none !important;
}
.noFocusShadow:focus {
  box-shadow: none !important;
  border-color: #ced4da !important;
}

.wrapper {
  display: flex;
  gap: 30px;
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  min-width: 600px;
}

/* Thumbnails */
.thumbnail {
  display: flex;
  flex-direction: column;
}
.thumbnailBox {
  border-radius: 4px;
  overflow: hidden;
  max-height: 100px;
  max-width: 100px;
  min-height: 100px;
  min-width: 100px;
  margin-bottom: 15px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.3s;
}
.thumbnailBox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.thumbnailBox.active {
  border: 2px solid #202020;
}

/* Main image */
.mainImage {
  overflow: hidden;
  min-width: 600px;
  max-width: 200px;
  border-radius: 10px;
  cursor: crosshair;
}
.mainImage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.bookImage {
  /* height: 600px; */
  /* object-fit: contain; */
  /* width: 100%; */
}

.actionButton {
  margin-top: 1em;
  padding: 10px 50px;
  font-weight: 500;
  border-radius: 50px;
}

/* Tablet screens (iPads, etc.) */
@media (max-width: 1024px) {
  .bookImage {
    height: 400px;
  }
}

/* Mobile screens */
@media (max-width: 576px) {
  .bookImage {
    height: 300px;
  }
}
