.gallery-wrapper {
    background: white;
    margin: 50px;
    padding: 50px;
    display: grid;
    justify-items: center;
    gap: 40px;
    border-radius: 10px;
}

.galleria {
	z-index: 0;
    /* min-width: 100px;  */
}

.container-gallery {
    width: 100%;
    display: grid;
    justify-content: center;
  }

.preview {
    overflow-x:auto;
    width: 100%;
}

.thumbnail-list {
    white-space:nowrap;
    list-style: none;
}
.thumbnail-list li {
  display: inline-block;
  cursor: pointer;
}

.preview img {
    max-width: 100px;
    max-height: 100px;
    pointer-events: none;
}

.gallery-block {
    display: grid;
	grid-auto-flow: column;
    gap: 40px;
	/* min-height: 100px; */
	justify-items: center;
    width: 100%;
}

.gallery-info {
    display: grid;
    gap: 20px;
    grid-template-rows: auto 1fr;
	width: 500px;
}

.gallery-info-title {
    font-size: 30pt;
    font-weight: 600;
    color: #0032a8;
}

.gallery-info-desc {
    font-size: 12pt;
    font-weight: 100;
    color: #2c3b5c;
}

.fotorama__stage {
    width: 800px;
}

.main-view {
    width: 100%;
    background-size: contain !important;
    height: 600px;
    background-position: center center !important;
}

@media screen and (max-width: 1500px) {
    .fotorama__stage {
        width: 700px;
    }

    .gallery-info {
        width: 400px;
    }
}

@media screen and (max-width: 1300px) {
    .fotorama__stage {
        width: 600px;
    }

    .gallery-info {
        width: 300px;
    }
}

@media screen and (max-width: 1100px) {
    .fotorama__stage {
        width: 500px;
    }

    .gallery-info {
        width: 200px;
    }

}

@media screen and (max-width: 900px) {
    .fotorama__stage {
        width: 400px;
    }

    .gallery-info {
        width: 100px;
    }
}

@media screen and (max-width: 710px) {
    .fotorama__stage {
        width: 200px;
    }

    .gallery-info {
        width: 100px;
    }

    .gallery-wrapper {
        background: white;
        margin: 0px;
        padding: 10px;
        display: grid;
        justify-items: center;
        gap: 40px;
        border-radius: 10px;
    }

    .gallery-block {
        grid-auto-flow: row;
    }

    .gallery-info-title {
        font-size: 15pt;
        text-align: center;
    }
    
    .gallery-info-desc {
        font-size: 8pt;
        text-align: center;
    }

    .main-view {
        height: 300px;
    }
}

@media screen and (max-width: 560px) {
    .fotorama__stage {
        width: 200px;
    }

    .gallery-info {
        width: 100px;
    }
}

@media screen and (max-width: 530px) {
    .fotorama__stage {
        width: 100px;
    }

    .gallery-info {
        width: 100px;
    }
}
  
  .album-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    width: 100%;
    max-width: 1200px;
    margin: 10px;
  }
  
  @media (min-width: 768px) {
    .album-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  @media (min-width: 1024px) {
    .album-grid {
      grid-template-columns: repeat(3, 1fr);
    }
  }
  
  .album-block {
    background-color: #ffffff;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    padding: 1rem;
  }
  
  .album-image {
    width: 100%;
    height: 12rem;
    object-fit: cover;
    border-radius: 0.75rem;
    margin-bottom: 1rem;
  }
  
  .album-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
  }
  
  .album-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
  }
  
  .btn-open {
    background-color: #3b82f6;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 0.75rem;
    text-decoration: none;
    transition: background-color 0.2s;
  }
  
  .btn-open:hover {
    background-color: #2563eb;
  }
  
  .btn-copy {
    background-color: #e5e7eb;
    padding: 0.5rem 1rem;
    border-radius: 0.75rem;
    cursor: pointer;
    border: none;
    transition: background-color 0.2s;
  }
  
  .btn-copy:hover {
    background-color: #d1d5db;
  }
  
  .container-g {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
  }