
/* Styl przycisku */
.btn-success {
  font-size: 16px;
  font-weight: bold;
  padding: 10px 20px;
}

.btn-success[data-bs-toggle="collapse"] {
  min-width: 250px;
}

.gallery-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 800px; /* Możesz dostosować szerokość */
  margin: 0 auto;
  cursor: pointer;
  background-color: transparent; /* Usuwamy tło kontenera */
  height: auto; /* Wysokość będzie zależeć od zawartości */
}

.gallery-preview {
  position: relative;
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.gallery-preview-image {
  width: 100%;
  height: 300px; /* Możesz dostosować wysokość */
  object-fit: scale-down;
  display: block;
  transition: transform 0.3s ease;
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
}

.gallery-text {
  color: white;
  font-size: 24px;
  font-weight: bold;
  padding: 12px 24px;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 5px;
  text-align: center;
}

.gallery-preview:hover .gallery-preview-image {
  transform: scale(1.05);
}


#dynamic-gallery-demo {
  padding: 10px 20px;
  font-size: 18px;
  border-radius: 5px;
}
