/* assets/css/book-single.css */

body {
  background: #e0e7ff;
}
.page-box {
  background: #ffffff;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  padding: 30px;
  margin-bottom: 40px;
}
.book-cover {
  width: 100%;
  max-width: 280px;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}
.title-section {
  font-weight: 700;
  font-size: 2.1rem;
  color: #1e40af;
  margin-bottom: 15px;
}
.price-box {
  font-size: 1.4rem;
  font-weight: 600;
  color: #1e40af;
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}
.old-price {
  text-decoration: line-through;
  color: #6c757d;
  font-size: 1.2rem;
}
.price-value {
  font-size: 1.8rem;
  font-weight: bold;
  color: #dc3545;
}
.short-description {
  font-size: 1rem;
  color: #475569;
  margin-bottom: 25px;
}
.action-buttons .btn {
  margin-right: 10px;
}
.nav-tabs .nav-link.active {
  background-color: #1d4ed8;
  color: #fff;
  font-weight: bold;
}
.tab-pane {
  padding: 25px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-top: none;
  border-radius: 0 0 10px 10px;
}
.profile-img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  margin-right: 15px;
  object-fit: cover;
  border: 3px solid #1d4ed8;
}