.sticky-container {
    position: sticky;
    bottom: 0;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.9); /* Initially visible */
    transition: background-color 0.3s ease; /* Smooth transition effect */
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1); /* Optional shadow */
}

.sticky-transparent {
    background-color: transparent; /* Transparent background after scrolling */
    box-shadow: none; /* Remove shadow */
}

.keywords {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 10px;
}
.keyword {
	background-color: #007bff;
	color: white;
	border-radius: 30px;
	padding: 5px 10px;
	display: inline-block;
}
.keyword .remove-keyword {
	margin-left: 8px;
	cursor: pointer;
}
#imagePreview {
	margin-top: 10px;
	max-width: 50%;
	height: auto;
}
.category-selector {
	border: 1px solid #ced4da;
	padding: 10px;
	cursor: pointer;
	border-radius: 0.25rem;
	background-color: #f8f9fa;
}
.error-message !important{
	display: none;
	color: #d9534f; /* Bootstrap danger color */
	background-color: #f2dede; /* Light red background */
	border: 1px solid #ebccd1; /* Border for the message */
	padding: 10px; /* Padding around the message */
	border-radius: 4px; /* Rounded corners */
}
.img-div {
	position: relative;
	width: 10%;
	float:left;
	margin-right:5px;
	margin-left:5px;
	margin-bottom:10px;
	margin-top:10px;
}

.image {
	opacity: 1;
	display: block;
	width: 100%;
	max-width: auto;
	transition: .5s ease;
	backface-visibility: hidden;
}

.middle {
	transition: .5s ease;
	opacity: 0;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	text-align: center;
}

.img-div:hover .image {
	opacity: 0.3;
}

.img-div:hover .middle {
	opacity: 1;
}