/* ===== MAGNIFIER STYLES ===== */
.zoom-wrapper {
	position: relative;
	overflow: hidden;
	cursor: none;
}
.zoom-wrapper img {
	width: 100%;
	display: block;
}
.zoom-lens {
	position: absolute;
	width: 120px;
	height: 120px;
	border: 3px solid #198754;
	border-radius: 50%;
	background-repeat: no-repeat;
	pointer-events: none;
	display: none;
	box-shadow: 0 0 25px rgba(0,0,0,.4);
}
.sent-message {
  opacity: 1;                 /* fully visible by default */
  transition: opacity 0.8s ease; /* smooth fade effect */
}


/* Disable magnifier on mobile */
@media (max-width: 768px) {
	.zoom-lens {
		display: none !important;
	}
}