.st-kw-tool {
	max-width: 800px;
	margin: 0 auto;
	font-family: inherit;
	color: inherit;
}

.st-kw-input-row {
	display: flex;
	gap: 10px;
	margin-bottom: 16px;
	flex-wrap: wrap;
}

.st-kw-input {
	flex: 1;
	min-width: 220px;
	padding: 12px 16px;
	border: 1px solid #ddd;
	border-radius: 6px;
	font-size: 16px;
}

.st-kw-input:focus {
	outline: none;
	border-color: #999;
}

.st-kw-btn {
	padding: 12px 24px;
	background: #1a1a1a;
	color: #fff;
	border: none;
	border-radius: 6px;
	cursor: pointer;
	font-size: 15px;
	transition: background 0.2s ease;
	white-space: nowrap;
}

.st-kw-btn:hover {
	background: #333;
}

.st-kw-btn:disabled {
	opacity: 0.6;
	cursor: not-allowed;
}

.st-kw-btn-secondary {
	background: #f0f0f0;
	color: #1a1a1a;
}

.st-kw-btn-secondary:hover {
	background: #e0e0e0;
}

.st-kw-categories {
	display: flex;
	gap: 16px;
	flex-wrap: wrap;
	margin-bottom: 20px;
	font-size: 14px;
}

.st-kw-categories label {
	display: flex;
	align-items: center;
	gap: 6px;
	cursor: pointer;
}

.st-kw-status {
	margin-bottom: 15px;
	font-size: 14px;
	color: #555;
	min-height: 20px;
}

.st-kw-results {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 20px;
}

.st-kw-group h3 {
	font-size: 15px;
	margin: 0 0 8px 0;
	border-bottom: 2px solid #1a1a1a;
	padding-bottom: 6px;
}

.st-kw-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.st-kw-list li {
	padding: 8px 10px;
	border-bottom: 1px solid #eee;
	cursor: pointer;
	font-size: 14px;
	transition: background 0.15s ease;
	border-radius: 4px;
}

.st-kw-list li:hover {
	background: #f5f5f5;
}

.st-kw-list li.st-kw-copied {
	background: #d4f4dd;
}

.st-kw-actions {
	display: flex;
	gap: 10px;
	margin-top: 24px;
	flex-wrap: wrap;
}

@media (max-width: 600px) {
	.st-kw-input-row {
		flex-direction: column;
	}
	.st-kw-btn {
		width: 100%;
	}
}
