.photo-cradle {
  max-width: 900px;
  margin: auto;
  background: #fff;
  padding: 15px;
  box-shadow: none;
}

.photo-cradle-main {
  position: relative;
  height: 450px;
  overflow: hidden;
  cursor: pointer;
}

.photo-cradle-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-cradle-thumbs {
  margin-top: 12px;
  display: flex;
  gap: 8px;
  overflow-x: auto;
  white-space: nowrap;
  padding-bottom: 8px;
}

.photo-cradle-thumbs::-webkit-scrollbar {
  height: 6px;
}

.photo-cradle-thumbs::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 4px;
}

.photo-cradle-thumbs img {
  flex: 0 0 auto;
  width: 90px;
  height: 60px;
  object-fit: cover;
  cursor: pointer;
  opacity: 0.5;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.photo-cradle-thumbs img:hover {
  opacity: 0.8;
}

.photo-cradle-thumbs img.active {
  opacity: 1;
  border-color: #007bff;
}

#lightboxOverlay {
  display: none; /* hidden by default */
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); /* center perfectly */
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.85);
  justify-content: center;
  align-items: center;
  z-index: 9999;
  padding: 10px;
}

#lightboxOverlay img {
  max-width: 90%;
  max-height: 90%;
  box-shadow: 0 0 25px #000;
  border-radius: 5px;
  cursor: pointer;
  display: block;
}
