/* Custom Scrollbar for a cleaner look */
::-webkit-scrollbar {
	width: 8px;
	height: 8px;
}
::-webkit-scrollbar-track {
	background: #1e293b; 
}
::-webkit-scrollbar-thumb {
	background: #475569; 
	border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
	background: #64748b; 
}

/* Specific light scrollbar for preview */
#preview-container::-webkit-scrollbar-track {
	background: #f8fafc; 
}
#preview-container::-webkit-scrollbar-thumb {
	background: #cbd5e1; 
}
#preview-container::-webkit-scrollbar-thumb:hover {
	background: #94a3b8; 
}

/* Ensure the markdown body has padding and constraints */
.markdown-body {
	box-sizing: border-box;
	min-width: 200px;
	max-width: 100%;
	margin: 0 auto;
	padding: 32px;
	background-color: transparent !important;
}

/* Editor specific tweaks */
#editor {
	tab-size: 4;
	caret-color: #3b82f6;
}
