/**
 * Ministry Insights Dashboard Styles
 *
 * @package Kingdom_Connect
 */

.kc-insights-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
	gap: 20px;
	margin-top: 20px;
}

.kc-insights-card {
	background: #fff;
	border: 1px solid #ccd0d4;
	border-radius: 4px;
	padding: 20px;
	box-shadow: 0 1px 1px rgba(0, 0, 0, 0.04);
}

.kc-insights-card h2 {
	margin-top: 0;
	margin-bottom: 15px;
	font-size: 18px;
	font-weight: 600;
	color: #1e3c72;
}

.kc-insights-card .description {
	color: #666;
	font-size: 13px;
	margin-bottom: 15px;
}

.kc-insights-card canvas {
	max-height: 300px;
}

.kc-mia-list {
	grid-column: 1 / -1; /* Span full width */
}

.kc-mia-list table {
	margin-top: 10px;
}

.kc-mia-list th {
	font-weight: 600;
}

.kc-text-parent-btn {
	background: #1e3c72;
	border-color: #1e3c72;
	color: #fff;
}

.kc-text-parent-btn:hover {
	background: #2a4f8f;
	border-color: #2a4f8f;
	color: #fff;
}

/* Responsive adjustments */
@media (max-width: 782px) {
	.kc-insights-grid {
		grid-template-columns: 1fr;
	}
}
