:root {
	--primary-color: #0dc270;
	--secondary-color: #77ea10;
	--accent-color: #f093fb;
	--success-color: #10b981;
	--error-color: #ef4444;
	--warning-color: #f59e0b;
	--info-color: #3b82f6;

	--text-primary: #1f2937;
	--text-secondary: #6b7280;
	--text-muted: #9ca3af;

	--bg-primary: #ffffff;
	--bg-secondary: #f8fafc;
	--bg-tertiary: #f1f5f9;

	--border-light: #e5e7eb;
	--border-medium: #d1d5db;

	--shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
	--shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1),
		0 2px 4px -2px rgb(0 0 0 / 0.1);
	--shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1),
		0 4px 6px -4px rgb(0 0 0 / 0.1);
	--shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1),
		0 8px 10px -6px rgb(0 0 0 / 0.1);

	--radius-sm: 0.375rem;
	--radius-md: 0.5rem;
	--radius-lg: 0.75rem;
	--radius-xl: 1rem;
}

.axilweb-keyword-clustering {
	background-color: #f9f9f9;
	padding: 80px 0;
	position: relative;
}

.axilweb-card {
	border: 1px solid var(--border-light);
	position: relative;
	border-radius: 10px;
}

.axilweb-card-header {
	border-radius: 10px 10px 0 0;
	background-color: var(--primary-color);
	padding: 15px 30px;
	position: relative;
}

.axilweb-card-title {
	color: white;
	font-size: 24px;
	font-weight: 600;
	margin: 0;
}

.axilweb-form-label {
	font-weight: 500;
	display: block;
	margin-bottom: 5px;
	color: var(--text-primary);
	font-size: 20px;
}

.axilweb-form-control::placeholder {
	color: var(--text-muted);
	opacity: 1;
	font-size: 17px;
	font-weight: 300;
}

.axilweb-metric-label {
	font-size: 18px;
	color: var(--text-secondary);
	font-weight: 500;
	margin-bottom: 5px;
}

.axilweb-metric-value {
	display: block;
	font-size: 22px;
	font-weight: 700;
	color: var(--primary-color);
}

.axilweb-form-control {
	width: 100%;
	padding: 10px 15px;
	border: 1px solid var(--border-light);
	border-radius: 10px;
	font-size: 18px;
	background: var(--bg-primary);
	color: var(--text-primary);
	transition: all 0.3s ease;
}

.axilweb-btn:focus,
.axilweb-form-control:focus,
.axilweb-radio-item:focus-within {
	outline: none;
}

.axilweb-mode-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(132px, 1fr));
	gap: 10px;
	margin-top: 10px;
}

.axilweb-cluster-header {
	background-color: #184c35;
	padding: 10px 15px;
	color: white;
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.axilweb-cluster-title {
	color: #0dc270;
	margin: 0;
	font-size: 18px;
	font-weight: 600;
	display: flex;
	align-items: center;
	gap: 10px;
	flex: 1;
}

.axilweb-metrics {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
	gap: 10px;
	margin-bottom: 10px;
}

.axilweb-metric-card {
	background: var(--bg-primary);
	padding: 15px 10px;
	border-radius: 10px;
	box-shadow: var(--shadow-sm);
	border: 1px solid var(--border-light);
	text-align: center;
	transition: all 0.3s ease;
}

.axilweb-metric-card:hover {
	transform: translateY(-2px);
	box-shadow: var(--shadow-md);
}

/* Sliders */
.axilweb-slider {
	width: 100%;
	height: 6px;
	border-radius: 3px;
	background: rgba(13, 194, 112, 0.1);
	outline: none;
	transition: all 0.3s ease;
	-webkit-appearance: none;
	appearance: none;
}

.axilweb-slider::-webkit-slider-thumb {
	-webkit-appearance: none;
	appearance: none;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background-color: var(--primary-color);
	cursor: pointer;
	box-shadow: var(--shadow-sm);
	transition: all 0.3s ease;
}

.axilweb-slider::-webkit-slider-thumb:hover {
	transform: scale(1.1);
	box-shadow: var(--shadow-md);
}

.axilweb-slider::-moz-range-thumb {
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background-color: var(--primary-color);
	cursor: pointer;
	border: none;
	box-shadow: var(--shadow-sm);
	transition: all 0.3s ease;
}

.axilweb-slider::-moz-range-thumb:hover {
	transform: scale(1.1);
	box-shadow: var(--shadow-md);
}

.axilweb-cluster-stats {
	margin-top: 5px;
	padding: 5px 0 0;
	border-top: 1px solid rgba(255, 255, 255, 0.2);
	font-size: 18px;
	opacity: 0.9;
	display: flex;
	gap: 15px;
}

.axilweb-cluster-keywords {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	gap: 10px;
}

.axilweb-keyword-item {
	font-size: 18px;
	background: var(--bg-secondary);
	padding: 10px 15px;
	border-radius: var(--radius-md);
	border: 1px solid var(--border-light);
	font-weight: 500;
	color: var(--text-primary);
	transition: all 0.3s ease;
}

.axilweb-keyword-item:hover {
	background: rgba(102, 126, 234, 0.1);
	border-color: var(--primary-color);
	transform: translateY(-1px);
}

.axilweb-cluster-count {
	font-size: 18px;
	margin-left: auto;
	margin-right: 15px;
}

.axilweb-cluster-action {
	background: rgba(255, 255, 255, 0.2);
	border: 1px solid rgba(255, 255, 255, 0.3);
	color: white;
	padding: 4px 10px 2px;
	border-radius: 5px;
	font-size: 16px;
	cursor: pointer;
	display: flex;
	align-items: center;
	transition: all 0.3s ease;
}

.axilweb-cluster-action:hover {
	background: rgba(255, 255, 255, 0.3);
	transform: translateY(-1px);
}

.axilweb-cluster-actions {
	display: flex;
	gap: 10px;
	opacity: 0.8;
	transition: opacity 0.3s ease;
}

.axilweb-cluster-header:hover .axilweb-cluster-actions {
	opacity: 1;
}

.axilweb-mode-item {
	border: 1px solid var(--border-light);
	border-radius: 10px;
	overflow: hidden;
	background: var(--bg-primary);
	position: relative;
	transition: all 0.3s ease;
}

.axilweb-mode-item:hover {
	border-color: var(--primary-color);
	transform: translateY(-2px);
	box-shadow: var(--shadow-md);
}

.axilweb-mode-item.active {
	border-color: var(--primary-color);
	background: linear-gradient(
		135deg,
		rgba(102, 126, 234, 0.1) 0%,
		rgba(118, 75, 162, 0.1) 100%
	);
	transform: translateY(-2px);
	box-shadow: var(--shadow-md);
}

.axilweb-mode-item input[type='radio'] {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}

.axilweb-mode-item label {
	display: block;
	padding: 15px;
	cursor: pointer;
	text-align: center;
	color: var(--text-primary);
	transition: all 0.3s ease;
}

.axilweb-mode-item .mode-title {
	display: block;
	font-weight: 600;
	font-size: 17px;
	margin-bottom: 0;
	text-transform: uppercase;
}

.axilweb-mode-item .mode-desc {
	display: block;
	font-size: 17px;
	color: var(--text-muted);
}
.axilweb-help-text {
	font-size: 17px;
	font-weight: 300;
	color: var(--text-muted);
	margin-top: 5px;
}
