/* Basic styles for the carousel container */
.carousel-container {
	width: 100%;
	max-width: 600px;
	margin: 0 auto;
	overflow: hidden;
	position: relative;
}

/* Style for the carousel images */
.carousel-image {
	width: 100%;
	display: none;
}

/* Style for the description container */
.description-container {
	background-color: rgba(0, 0, 0, 0.9);
	color: white;
	text-align: center;
	padding: 8px;
}

/* Style for the navigation arrows */
.carousel-arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	cursor: pointer;
	font-size: 24px;
	color: white;
	background-color: rgba(0, 0, 0, 0.8);
	padding: 8px 16px;
	border-radius: 50%;
	z-index: 1;
}

.prev-arrow {
	left: 10px;
}

.next-arrow {
	right: 10px;
}

/* Style for the description container below the image */
.description-below {
	margin-top: 10px;
}
