        .gallery-container {
            display: flex;
            flex-direction: column;
            align-items: center;
            width: 100%;
        }
		
		.gallery-container .large-image
		{	
			display: flex;
            align-items: center;
            position: relative;
            width: 100%;
            margin-top: 10px;
			max-height:600px;
		}

        .gallery-container .large-image img {
            width: 100%;
            max-height: 600px;
            object-fit: contain;
            cursor: pointer; /* Указатель курсора для перетаскивания */
        }

        .gallery-container .thumbnails{
            display: flex;
            align-items: center;
            position: relative;
            width: 100%;
            margin-top: 10px;
        }
		

        .gallery-container .thumbnail-scroller {
            display: flex;
            overflow-x: auto;
            scrollbar-width: none;
            width: calc(100% - 80px);
            justify-content: center;
        }

        .gallery-container .thumbnail {
            max-width: 100px;
            height: auto;
            margin: 0 5px;
            cursor: pointer;
            transition: transform 0.2s ease;
            border: 2px solid transparent; /* Добавляем прозрачную рамку */
        }

        .gallery-container .thumbnail:hover {
            /*transform: scale(1.1);*/
        }

        .gallery-container .thumbnail.active {
            border: 2px solid #f0cb00; /* Рамка для активной миниатюры */
        }
		
		.gallery-container .scroll-button {
            position: absolute;
            background-color: rgba(0, 0, 0, 0.5);
            color: white;
            border: none;
            padding: 10px;
            cursor: pointer;
            top: 50%; /* Центрируем кнопки по вертикали */
            transform: translateY(-50%); /* Корректируем позицию для центрирования */
        }

        .gallery-container .prevButton {
            left: 0;
        }

        .gallery-container .nextButton {
            right: 0;
        }

        .gallery-container .imageCaption {
            margin-top: 10px;
            font-size: 14px;
            color: #333;
            text-align: center;
        }
		
		.gallery-container .thumbnail {
    width: 100px !important;
    max-height: 100px !important; /* Устанавливаем одинаковую высоту */
    object-fit: cover; /* Пропорционально масштабирует изображение, заполняя квадрат */
    margin: 0 5px;
    cursor: pointer;
    transition: transform 0.2s ease;
    border: 2px solid transparent;
}