* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

body {
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
		"Helvetica Neue", Arial, sans-serif;
	line-height: 1.5;
	color: #333;
	background-color: #f5f7fa;
	padding: 16px;
}

.container {
	max-width: 900px;
	margin: 0 auto;
}

header {
	text-align: center;
	margin-bottom: 20px;
	padding: 16px;
	background: white;
	border-radius: 6px;
	box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
}

h1 {
	font-size: 24px;
	margin-bottom: 6px;
	color: #18a058;
}

.description {
	color: #666;
	font-size: 14px;
}

.card {
	background: white;
	border-radius: 6px;
	box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
}

.card-title {
	font-size: 16px;
	font-weight: 600;
	margin-bottom: 12px;
	color: #18a058;
	display: flex;
	align-items: center;
	gap: 6px;
}

.form-row {
	display: flex;
	gap: 24px;
	margin-bottom: 16px;
}

.form-item {
	flex: 1;
}

.checkbox-group {
	display: flex;
	gap: 16px;
	margin-top: 8px;
}

.action-buttons {
	display: flex;
	gap: 12px;
	margin-top: 16px;
}

.action-buttons .n-button {
	flex: 1;
}

.result-modal-content {
	padding: 10px 0;
}

.result-url {
	background: #f8f9fa;
	padding: 12px;
	border-radius: 4px;
	border: 1px solid #e0e0e0;
	word-break: break-all;
	margin-bottom: 10px;
	font-family: monospace;
	font-size: 13px;
}

footer {
	text-align: center;
	padding: 16px;
	font-size: 13px;
	color: #666;
	margin-top: 20px;
}

@media (max-width: 768px) {
	.form-row {
		flex-direction: column;
		gap: 12px;
	}
}
