
		body {
			font-family: Arial, sans-serif;
			max-width: 800px;
			margin: auto;
			background-color: #1a1a1a;
			color: #f0f0f0;
		}

		form {
			display: flex;
			flex-direction: column;
			margin-bottom: 2rem;
		}

		textarea {
			/*resize: none;*/
			margin-bottom: 1rem;
			background-color: #333;
			color: #f0f0f0;
			border: 1px solid #555;
		}

		button {
			background-color: #333;
			color: #f0f0f0;
			border: 1px solid #555;
			cursor: pointer;
		}

		button:hover {
			background-color: #444;
		}

		.generated-text {
			white-space: pre-wrap;
			border: 1px solid #555;
			padding: 2rem;
			max-height: 300px;
			overflow-y: scroll;
			font-size: 0.9rem;
			background-color: #333;
			color: #f0f0f0;
		}