.gallery {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}
.big-image{
	width:500px;
	height:400px;
	text-align: center;
	 display: flex;
    justify-content: center;
    align-items: center;
}
.big-image img {
	object-fit: cover;
	cursor: pointer;
	transition: transform 0.3s;
	 max-width: 100%;
    max-height: 100%;
}

.thumbnails-container {
	display: flex;
	align-items: center;
	margin-top: 20px;
}
.thumbnails {
	display: flex;
	overflow-x: hidden;
	white-space: nowrap;
	width: 500px; /* Adjust the width as needed */
}
.thumbnails img {
	width: 80px;
	height: 80px;
	object-fit: cover;
	margin: 0 10px;
	cursor: pointer;
	display: inline-block;
	transition: transform 0.3s;
	border: 3px solid #ccc;
}

.arrow {
	cursor: pointer;
	font-size: 30px;
	user-select: none;
}
.arrow.left {
	margin-right: 10px;
}
.arrow.right {
	margin-left: 10px;
}
/* Lightbox styles */
.lightbox {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.8);
	justify-content: center;
	align-items: center;
	opacity: 0;
	transition: opacity 0.3s;
	z-index: 999;
}
.lightbox img {
	max-width: 90%;
	max-height: 90%;
	box-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}
.lightbox .close {
	position: absolute;
	top: 20px;
	right: 20px;
	font-size: 30px;
	color: white;
	cursor: pointer;
}

.single-image-border {
    border: 1px solid #f0f0f0;
    }


