/* =============================
	Simple Post Page Notes Styling
	============================= */

/* Meta box wrapper */
#simple_post_page_notes_box .inside {
	padding: 10px 20px;
	background: #f9fbfd;
	border-radius: 10px;
	border: 1px solid #e0e6ef;
	box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.03);
}

/* Meta box title input */
#simple_post_page_note_title {
	width: 100%;
	font-size: 16px;
	font-weight: 600;
	border: 1px solid #c3c9d4;
	border-radius: 6px;
	margin-bottom: 8px;
	background-color: #fff;
	transition: border-color 0.2s, box-shadow 0.2s;
}

#simple_post_page_note_title:focus {
	border-color: #007cba;
	box-shadow: 0 0 0 1px #007cba;
	outline: none;
}

/* Note body textarea */
#simple_post_page_note_body {
	width: 100%;
	min-height: 120px;
	font-size: 16px;
	line-height: 1.5;
	border: 1px solid #c3c9d4;
	border-radius: 6px;
	padding: 8px 10px;
	resize: vertical;
	transition: border-color 0.2s, box-shadow 0.2s;
}

#simple_post_page_note_body:focus {
	border-color: #007cba;
	box-shadow: 0 0 0 1px #007cba;
	outline: none;
}

/* Help text inside meta box */
#simple_post_page_notes_box p {
	font-size: 13px;
	color: #555;
	margin: 0 0 6px;
}

/* =============================
	Notes Column Preview
	============================= */
.column-simple_post_page_note {
	width: 15%;
}

.sppn-note-preview {
	background: #eef5ff;
	border: 1px solid #c3d5f0;
	padding: 3px 6px;
	border-radius: 4px;
	font-size: 12px;
	color: #1a3a6e;
	display: inline-block;
	max-width: 90%;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.sppn-empty-note {
	color: #aaa;
	font-style: italic;
}