/* 仅补充极少量通用样式，尽量依赖 Tailwind */

.scroll-smooth::-webkit-scrollbar {
	width: 8px;
}
.scroll-smooth::-webkit-scrollbar-thumb {
	background: #cbd5e1;
	border-radius: 6px;
}

.modal-backdrop {
	position: fixed;
	inset: 0;
	background: rgba(15, 23, 42, 0.55);
	display: none;
	align-items: center;
	justify-content: center;
	z-index: 60;
}
.modal-backdrop.active {
	display: flex;
}

.editor-area {
	min-height: 260px;
	outline: none;
}

.editor-area p { margin: 0.35rem 0; }


