.sn-wrapper-2103 {
	display: flex;
	flex-direction: column;
	width: 100%;
	position: relative;
	overflow: hidden;
	font-family: 'DM Sans', sans-serif;
}

.sn-header-area-2103 {
	padding: 40px 20px 0;
	text-align: center;
	z-index: 10;
}

.sn-headline-2103 {
	margin: 0;
	font-size: 1.6rem;
	font-weight: 500;
	max-width: 900px;
	margin-left: auto;
	margin-right: auto;
}

.sn-board-area-2103 {
	flex-grow: 1;
	position: relative;
	min-height: 450px; /* Increased from 350px to provide more room */
	width: 100%;
	padding-bottom: 60px; /* Extra space at the bottom */
}

.sn-note-2103 {
	position: absolute;
	width: 160px;
	height: 160px;
	padding: 25px 15px 15px;
	font-size: 1.1rem;
	font-weight: 600;
	line-height: 1.3;
	box-shadow: 2px 5px 12px rgba(0,0,0,0.15);
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	word-wrap: break-word;
	animation: popIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
	z-index: 5; /* Keep notes behind footer */
	cursor: grab; /* Added grab cursor */
	user-select: none; /* Prevent text selection while dragging */
	touch-action: none; /* Prevent default touch actions like scrolling when dragging */
}

.sn-note-2103:active, .sn-dragging-2103 {
	cursor: grabbing;
	box-shadow: 5px 10px 20px rgba(0,0,0,0.25); /* Lift up effect while dragging */
}

.sn-dragging-2103 {
	transition: none !important; /* Disable transitions while dragging for smooth movement */
	animation: none !important; /* Ensure animation doesn't conflict with dragging */
}

/* Thumbtack style */
.sn-note-2103::after {
	content: "";
	position: absolute;
	top: 8px;
	left: 50%;
	transform: translateX(-50%);
	width: 12px;
	height: 12px;
	background-color: #a48771; /* Muted brown pin */
	border-radius: 50%;
	box-shadow: inset -2px -2px 4px rgba(0,0,0,0.3), 1px 2px 3px rgba(0,0,0,0.2);
}

@keyframes popIn {
	0% { opacity: 0; transform: scale(0.5) rotate(0deg); }
	100% { opacity: 1; }
}

.sn-footer-area-2103 {
	padding: 30px 20px 50px; /* Increased padding around input area */
	display: flex;
	flex-direction: column;
	align-items: center;
	z-index: 20; /* Increased z-index to ensure it sits above any errant notes */
	position: relative;
	background: linear-gradient(to top, rgba(26,60,34,0.8) 0%, rgba(26,60,34,0) 100%); /* Subtle gradient for contrast */
}

.sn-input-wrapper-2103 {
	display: flex;
	align-items: center;
	background-color: #fff;
	border-radius: 50px;
	width: 100%;
	max-width: 600px;
	padding: 8px;
	box-shadow: 0 4px 15px rgba(0,0,0,0.2); /* Enhanced shadow */
}

.sn-input-2103 {
	flex-grow: 1;
	border: none;
	background: transparent;
	padding: 10px 20px;
	font-size: 1.1rem;
	font-family: inherit;
	color: #646464;
}

.sn-input-2103:focus {
	outline: none;
}

.sn-submit-btn-2103 {
	background-color: #bf815e; /* Matching example's button color */
	border: none;
	width: 45px;
	height: 45px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	flex-shrink: 0;
	transition: background-color 0.2s, transform 0.2s;
}

.sn-submit-btn-2103:hover {
	background-color: #a87253;
	transform: scale(1.05);
}

.sn-error-msg-2103 {
	color: #ffb74d;
	margin-top: 15px;
	font-size: 0.95rem;
	font-weight: 500;
}

@media (max-width: 768px) {
	.sn-headline-2103 {
		font-size: 1.3rem;
	}
	.sn-note-2103 {
		width: 120px;
		height: 120px;
		font-size: 0.9rem;
		padding: 20px 10px 10px;
	}
	.sn-board-area-2103 {
		min-height: 400px;
	}
}