.gallery-body{
		background: none;
		display: flex;
		justify-content: center;
		align-items: center;
		/* height: 500px; */
	}

	.gallery { 
		max-width: 700px;
		text-align: center;
		background: #ffffff73;
		padding: 20px;
		border-radius: 8px;
		box-shadow: 0 4px 10px rgba(0,0,0,0.1);
	} 
	
	.preview img {
		width: 100%;
		max-height: 500px;
		object-fit: cover;
		border-radius: 6px;
	}
	
	.div-thumbnail{
		overflow-x: auto;
	}
	.thumbnails { 
		width: fit-content;
		margin-top: 15px;
		display: flex;
		justify-content: center;
		gap: 10px;
		padding: 20px 0;
	} 
	.thumbnails::-webkit-scrollbar {
		height: 8px;
	}
	.thumbnails::-webkit-scrollbar-thumb {
		background: #ccc;
		border-radius: 4px;
	}
	
	.thumbnails img {
		flex: 0 0 auto;
		width: 100px;
		height: 70px;
		object-fit: cover;
		cursor: pointer;
		border: 2px solid transparent;
		border-radius: 4px;
		transition: border 0.3s;
	} 
	
	.thumbnails img:hover { 
		border: 2px solid #007BFF;
	} 
	
	.thumbnails img.active { 
		border: 2px solid #FF5722; /* Highlight color */ 
	} 

	.controls {
		margin-top: 15px;
	}

	.controls button {
		padding: 8px 16px;
		margin: 0 5px;
		border: none;
		border-radius: 4px;
		background: #007BFF;
		color: #fff;
		cursor: pointer;
		font-size: 14px;
		transition: background 0.3s;
	}
	.controls button.clicked{
		background: #FF5722;
	}
	.controls button:hover {
		background: #0056b3;
	}


/* Mobile view */

@media screen and (max-width: 450px){

.gallery{
	max-width: 100%;
	padding: 0 5px 15px;
	border-radius: 0 0 6px 6px;
}
.gallery-body{
	margin: 0 -10px;
}

.preview{
	margin: 0 -5px;
}
.preview img{
	border-radius: 0;
}

}