
	.tiptap {
		outline: none;
		min-height: 100%;
	}

	/* Show placeholder even when not focused */
	.tiptap.is-editor-empty:before {
		color: #adb5bd;
		content: attr(data-placeholder);
		float: left;
		height: 0;
		pointer-events: none;
		display: block;
	}

	.tiptap p.is-editor-empty:first-child::before,
	.tiptap p.is-empty:first-child::before {
		color: #adb5bd;
		content: attr(data-placeholder);
		float: left;
		height: 0;
		pointer-events: none;
	}

	.tiptap h1 {
		font-size: 1.5em;
		font-weight: 700;
		margin-top: 0.5em;
		margin-bottom: 0.5em;
	}

	.tiptap h2 {
		font-size: 1.25em;
		font-weight: 600;
		margin-top: 0.5em;
		margin-bottom: 0.5em;
	}

	.tiptap h3 {
		font-size: 1.1em;
		font-weight: 600;
		margin-top: 0.5em;
		margin-bottom: 0.5em;
	}

	.tiptap ul,
	.tiptap ol {
		padding-left: 1.5em;
		margin: 0.5em 0;
	}

	.tiptap ul {
		list-style-type: disc;
	}

	.tiptap ol {
		list-style-type: decimal;
	}

	.tiptap li {
		margin: 0.25em 0;
	}

	.tiptap strong {
		font-weight: 700;
	}

	.tiptap em {
		font-style: italic;
	}

	.tiptap p {
		margin: 0.5em 0;
	}

	.tiptap p:first-child {
		margin-top: 0;
	}

	.tiptap p:last-child {
		margin-bottom: 0;
	}

	/* Hide scrollbars for webkit browsers */
	.scrollbar-hide::-webkit-scrollbar {
		display: none;
	}

	/* Hide scrollbars for Firefox */
	.scrollbar-hide {
		scrollbar-width: none;
		-ms-overflow-style: none;
	}

	/* Removed liquid splash animations as they're no longer needed */
