.item-image {
	width: 100%;
	cursor: pointer;
}
.modal-img {
	width: 100%;
}

/* Search result cards */
div.mySearchItemDiv {
	background-color: white !important;
	border: 3px solid #bbb !important;
	border-radius: 10px !important;
	box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.15) !important;
	padding: 5px !important;
	overflow: hidden !important;
	transition: all 0.3s ease !important;
}

div.mySearchItemDiv:hover,
div.mySearchItemDiv:hover *,
div.mySearchItemDiv:hover table,
div.mySearchItemDiv:hover td,
div.mySearchItemDiv:hover tr,
div.mySearchItemDiv:hover div,
div.mySearchItemDiv:hover p,
div.mySearchItemDiv:hover button {
	background-color: #fff8dc !important;
	transition: none !important;
}

div.mySearchItemDiv:hover {
	border: 3px solid #28a745 !important;
	box-shadow: 5px 5px 12px rgba(0, 0, 0, 0.25) !important;
}

div.mySearchItemDiv:hover button {
	background-color: #28a745 !important;
	color: white !important;
}

/* submit button */
#searchButton {
	background: linear-gradient(135deg, #28a745 0%, #218838 100%);
	border: 4px solid #155724;
	color: #FFFFFF;
	font-weight: bold;
	border-radius: 8px;
	padding: 15px 50px;
	font-size: 18px;
	cursor: pointer;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
	transition: all 0.3s ease;
	text-transform: uppercase;
	letter-spacing: 1px;
	white-space: nowrap;
	min-width: 400px;
}

#searchButton:hover {
	background: linear-gradient(135deg, #218838 0%, #1e7e34 100%);
	border-color: #0d3f1f;
	box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
	transform: translateY(-2px);
}

#searchButton:active {
	transform: translateY(0);
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* glowing input box */
.snipe-input {
	font-size: 1.5em;
	border: 2px solid #007bff;
	box-shadow: 0 0 10px rgba(0, 123, 255, 0.5);
	transition: box-shadow 0.3s ease-in-out;
	animation: glow 1.5s infinite alternate;
}

.snipe-input:focus {
	outline: none;
	box-shadow: 0 0 20px rgba(0, 123, 255, 0.7);
}

@keyframes glow {
	0% {
		box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
	}
	50% {
		box-shadow: 0 0 10px rgba(0, 123, 255, 0.7);
	}
	100% {
		box-shadow: 0 0 15px rgba(0, 123, 255, 1);
	}
}
/* end glowing input box */
