.aiug-image-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
	gap: 20px;
}

.aiug-image-item {
	position: relative;
	border: 1px solid #ddd;
	padding: 10px;
	border-radius: 5px;
}

.aiug-image-item img {
	width: 100%;
	height: 200px;
	object-fit: cover;
	border-radius: 5px;
}

.aiug-image-title {
	margin: 10px 0 5px;
	font-weight: bold;
	word-break: break-word;
}

.aiug-delete-image,
.aiug-edit-title {
	position: absolute;
	top: 5px;
	background: rgba(255, 255, 255, 0.7);
	border: none;
	border-radius: 50%;
	padding: 5px;
	cursor: pointer;
	font-size: 16px;
}

.aiug-delete-image {
	right: 5px;
}

.aiug-edit-title {
	right: 40px;
}

#aiug-upload-form {
	margin-bottom: 20px;
}

#aiug-image-upload {
	margin-bottom: 10px;
}

#aiug-upload-button {
	margin-top: 10px;
	padding: 10px 20px;
	background-color: #4CAF50;
	color: white;
	border: none;
	border-radius: 5px;
	cursor: pointer;
}

#aiug-selected-images {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 10px;
}

#aiug-selected-images .aiug-selected-image {
	position: relative;
	width: 150px;
}

#aiug-selected-images img {
	width: 150px;
	height: 150px;
	object-fit: cover;
}

#aiug-selected-images input {
	width: 100%;
	margin-top: 5px;
}

#aiug-upload-progress {
	margin-top: 10px;
}

.aiug-progress-bar {
	width: 100%;
	background-color: #f0f0f0;
	border-radius: 5px;
	overflow: hidden;
}

.aiug-progress-bar-inner {
	height: 20px;
	background-color: #4CAF50;
	width: 0;
	transition: width 0.3s ease-in-out;
}
.aiug-carousel-container {
	position: relative;
	max-width: 800px;
	margin: auto;
}

.aiug-carousel {
	overflow: hidden;
}

.aiug-carousel-item {
	display: none;
	width: 100%;
}

.aiug-carousel-item.active {
	display: block;
}

.aiug-carousel-item img {
	width: 100%;
	height: auto;
}

.aiug-carousel-caption {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background: rgba(0, 0, 0, 0.5);
	color: white;
	padding: 10px;
}

.aiug-carousel-prev, .aiug-carousel-next {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: rgba(0, 0, 0, 0.5);
	color: white;
	border: none;
	padding: 10px;
	cursor: pointer;
}

.aiug-carousel-prev {
	left: 10px;
}

.aiug-carousel-next {
	right: 10px;
}

.aiug-edit-title, .aiug-delete-image {
	background: none;
	border: none;
	color: white;
	cursor: pointer;
	margin-left: 10px;
}

.owl-nav{
	position: absolute;
	top: 40%;
	display: flex;
	justify-content: space-between;
	width: 100%;
	height: 30px;
}
.um-row .owl-nav button{

	width: 50px !important;
	height:50px !important;
	border-radius: 8px !important;
	background-color: #00000080 !important;

}

.owl-nav span{


	font-size: 40px !important;
	color: #ffffff !important;
	padding: 0px !important;
	margin: 0px !important;
	line-height: 20px !important;

}