/* Anveshi page specific styles */

/* Tab navigation */
.anveshi-tab {
  white-space: nowrap;
  flex-shrink: 0;
}

/* Lightbox styles */
.lightbox-image {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.lightbox-caption {
  color: white;
  text-align: center;
  margin-top: 1rem;
  font-size: 1.125rem;
}

.lightbox-counter {
  color: white;
  font-size: 0.875rem;
  background: rgba(0, 0, 0, 0.5);
  padding: 0.5rem 1rem;
  border-radius: 0.25rem;
}

.lightbox-nav-button {
  background: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s;
}

.lightbox-nav-button:hover {
  background: rgba(0, 0, 0, 0.7);
}