body {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	min-height: 100vh;
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.main-container {
	background: white;
	border-radius: 15px;
	box-shadow: 0 15px 35px rgba(0,0,0,0.1);
	overflow: hidden;
}

.header-section {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color: white;
	padding: 2rem 0;
}

.header-section h1 {
	font-size: 2.5rem;
	font-weight: 700;
	margin: 0;
	text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.content-section {
	padding: 2rem;
}

textarea {
	font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
	font-size: 0.9rem;
	resize: vertical;
}

.btn-generate {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	border: none;
	padding: 0.75rem 2rem;
	font-weight: 600;
	transition: all 0.3s ease;
}

.btn-generate:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.bookmarklet-result {
	border-left: 4px solid #0d6efd;
}

.copy-feedback {
	transition: all 0.3s ease;
}

.code-input {
	min-height: 200px;
}

.code-output {
	min-height: 120px;
	background-color: #f8f9fa;
}
