/* Scoped Gallery Styles */
.gallery-container {
  position: relative;
  max-width: 90%;
  max-height: 90%;
  margin: auto;
  overflow: hidden;
  padding-top: 5%;
  padding-left: 5%;
}

.gallery-main {
  width: 90%;
  max-height: auto;
  border: 2px solid yellow;
  object-fit: cover;
}

.gallery-thumbnails {
  display: flex;
  overflow-x: auto;
  margin-top: 1rem;
  gap: 0.5rem;
  padding-bottom: 1rem;
}

.gallery-thumbnail {
  max-height: 50px;
  height: auto;
  width: auto;
  cursor: pointer;
  object-fit: contain;
  flex-shrink: 0;
  border: 2px solid transparent;
}

.gallery-thumbnail.active {
  border-color: yellow;
}

.gallery-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  display: none;
}

.gallery-overlay img {
  max-width: 90%;
  max-height: 90%;
}