.album-detail-container {
  max-width: 1200px;
  margin-top: 50px;
}

.album-back-btn {
  display: inline-block;
  margin-bottom: 20px;
  color: #007bff;
  text-decoration: none;
  font-weight: bold;
}

.album-back-btn:hover {
  text-decoration: underline;
}

.album-cover {
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.album-title-detail {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 10px;
}

.album-author-detail {
  display: inline-block;
  white-space: nowrap;
  color: #555;
  margin-bottom: 10px;
}

.album-description-detail {
  font-size: 16px;
  color: #333;
  margin-bottom: 10px;
}

.album-images-heading {
  font-size: 22px;
  margin-top: 40px;
  margin-bottom: 20px;
  border-bottom: 2px solid #007bff;
  display: inline-block;
  padding-bottom: 5px;
}

.album-image-item {
  background-color: #f9f9f9;
  padding: 8px;
  border-radius: 8px;
  text-align: center;
  height: 100%;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.album-image-thumb {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 6px;
}

.album-image-caption {
  margin-top: 10px;
  font-size: 14px;
  color: #444;
}
.album-image-thumb {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 6px;
  transition: transform 0.2s ease;
}

.album-image-thumb:hover {
  transform: scale(1.03);
  cursor: zoom-in;
}
/* Phóng to ảnh popup khi click */
.lb-image {
  transition: transform 0.3s ease-in-out;
  cursor: zoom-in;
}

.lb-image.zoomed {
  transform: scale(1.8);
  cursor: zoom-out;
}

/* Đảm bảo popup nằm giữa */
.lb-outerContainer {
  display: flex;
  align-items: center;
  justify-content: center;
}

