[data-bs-theme="light"] {
  --theme-bg: #f8f9fa;
}
[data-bs-theme="dark"] {
  --theme-bg: #212525;
}
[data-bs-theme="light"] {
  --font-style: #1b1b1b;
}
[data-bs-theme="dark"] {
  --font-style: #e8e8e8;
}
.text-3 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}
.bg-custom {
  background-color: var(--theme-bg);
  box-shadow: 0 4px 12px -2px rgba(0, 0, 0, 0.2);
}
.review-details {
  opacity: 1;
  transition: opacity 0.3s ease-in-out; /* Faster transition */
}

.review-item {
  padding-bottom: 15px;
  margin-bottom: 15px;
}

.review-item img {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: 50%;
}
.review-container {
  transition: opacity 0.3s ease-in-out; /* Faster transition */
}

.review-details {
  opacity: 1;
  transition: opacity 0.3s ease-in-out; /* Faster transition */
}
.hover-custom {
  transition: all 0.5s;
}
.hover-custom:hover {
  background-color: #ffb700 !important;
  color: #fff !important;
}

.book-page {
  padding: 30px;
}

.fade-in {
  animation: fadeIn 0.6s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.pdf-container {
  width: 100%;
  height: 100vh;
}

iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.bg-blur{
  background-color: rgba(0, 0, 0, 0.1) !important;
  backdrop-filter: blur(3px);
}


