#wc-sticky-note {
	position: fixed;
	top: 120px;
	right: 120px;
	width: 260px;
	background: #fff689;
	border: 2px solid #ddd;
	padding: 15px 15px 20px;
	z-index: 9999;
	cursor: move;
	font-family: 'Handlee', cursive;
	font-size: 16px;
	box-shadow: 3px 3px 12px rgba(0, 0, 0, 0.3);
	border-radius: 12px 32px 12px 12px;
	overflow: hidden;
}

#wc-sticky-note .note-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 10px;
}

#wc-sticky-note .note-header .title {
	font-size: 18px;
	color: #333;
	font-weight: bold;
}

#wc-sticky-note .note-header .icons {
	color: #555;
	font-size: 16px;
	cursor: pointer;
}

#wc-sticky-note .note-header .icons i:hover {
	color: #000;
	transform: scale(1.1);
}

#wc-sticky-note .pin-icon {
	position: absolute;
	top: -10px;
	left: 50%;
	transform: translateX(-50%) rotate(-12deg);
	font-size: 24px;
	color: #c00;
}

#wc-sticky-note textarea {
	width: 100%;
	height: 100px;
	margin-top: 10px;
	border: 1px solid #ccc;
	border-radius: 5px;
	padding: 8px;
	resize: none;
}

#wc-sticky-note button#save-sticky-note {
	margin-top: 12px;
	background: linear-gradient(to right, #ff9800, #ffc107);
	color: #fff;
	border: none;
	border-radius: 20px;
	padding: 6px 14px;
	font-size: 14px;
	font-weight: bold;
	cursor: pointer;
	transition: background 0.3s ease;
	box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

#wc-sticky-note button#save-sticky-note:hover {
	background: linear-gradient(to right, #e68900, #fdd835);
}

#wc-sticky-note #sticky-note-message {
	display: block;
	color: green;
	font-size: 12px;
	margin-top: 5px;
}
