/* SETTINGS */

.clio-redirect-uri {
	display: inline-block;
	padding: 8px 12px;
	background: #f0f0f1;
	border: 1px solid #c3c4c7;
	border-radius: 4px;
	font-size: 13px;
}

/* INSIGHTS */

.clio-insights-widget {
	padding: 12px;
}

.clio-insights-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 16px;
	margin-bottom: 16px;
}

.clio-insight-card {
	background: #f9f9f9;
	border: 1px solid #ddd;
	border-radius: 4px;
	padding: 16px;
	text-align: center;
	transition: transform 0.2s, box-shadow 0.2s;
}

.clio-insight-card:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.clio-insight-label {
	font-size: 13px;
	color: #666;
	margin-bottom: 8px;
	font-weight: 500;
}

.clio-insight-value {
	font-size: 32px;
	font-weight: 700;
	color: #2271b1;
	margin-bottom: 8px;
	line-height: 1;
}

.clio-insight-link {
	font-size: 12px;
	text-decoration: none;
	color: #2271b1;
	display: inline-block;
}

.clio-insight-link:hover {
	text-decoration: underline;
}

.clio-insights-footer {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-top: 12px;
	border-top: 1px solid #ddd;
}

.clio-insights-updated {
	font-size: 12px;
	color: #666;
}

.clio-refresh-insights.is-loading {
	opacity: 0.6;
	pointer-events: none;
}