/** Frontend CSS for Text to PDF. */
.texttopdf-button-wrapper {
	margin: 20px 0;
}

.texttopdf-button {
	display: inline-block;
	background-color: #0073aa;
	color: #fff;
	padding: 10px 15px;
	border-radius: 4px;
	text-decoration: none;
	font-weight: 600;
	transition: background-color 0.2s ease;
}

.texttopdf-button:hover,
.texttopdf-button:focus {
	background-color: #005177;
	color: #fff;
}

.texttopdf-form-wrapper {
	background: #f9f9f9;
	padding: 20px;
	border: 1px solid #eee;
	border-radius: 5px;
	margin-bottom: 20px;
}

.texttopdf-field {
	margin-bottom: 15px;
}

.texttopdf-field label {
	display: block;
	font-weight: 600;
	margin-bottom: 5px;
}

.texttopdf-input,
.texttopdf-textarea {
	width: 100%;
	padding: 8px;
	border: 1px solid #ccc;
	border-radius: 4px;
	box-sizing: border-box;
}

.texttopdf-textarea {
	resize: vertical;
}

.texttopdf-submit button {
	cursor: pointer;
	border: none;
}
