/**
 * FlxWoo Settings Dashboard Styles
 *
 * Styles for system information and documentation dashboard.
 *
 * @package FlxWoo\Admin
 * @since 2.3.0 (Simplified from v2.2.0)
 */

/* ========================================
	Dashboard Layout
	======================================== */

.flx-performance-dashboard {
	max-width: 1200px;
}

.flx-dashboard-section {
	background: #fff;
	border: 1px solid #ccd0d4;
	box-shadow: 0 1px 1px rgba(0,0,0,.04);
	margin-bottom: 20px;
	padding: 20px;
}

.flx-dashboard-section h2 {
	margin-top: 0;
	font-size: 18px;
	font-weight: 600;
	border-bottom: 1px solid #eee;
	padding-bottom: 10px;
	margin-bottom: 15px;
}

.flx-dashboard-section h2 .dashicons {
	vertical-align: middle;
	margin-right: 5px;
	font-size: 20px;
}

.flx-dashboard-section p.description {
	margin-top: -10px;
	margin-bottom: 20px;
	color: #666;
}

/* ========================================
	System Information Grid
	======================================== */

.flx-info-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 15px;
	margin-top: 15px;
}

.flx-info-item {
	padding: 12px;
	background: #f7f7f7;
	border-radius: 4px;
	border-left: 3px solid #2271b1;
}

.flx-info-item strong {
	display: block;
	margin-bottom: 5px;
	color: #1d2327;
	font-size: 13px;
}

.flx-info-item span {
	color: #50575e;
	font-size: 14px;
}

/* ========================================
	Documentation Grid (Enhanced)
	======================================== */

.flx-doc-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 15px;
	margin-top: 15px;
}

.flx-doc-item {
	padding: 15px;
	background: #f6f7f7;
	border-radius: 4px;
	border-left: 3px solid #2271b1;
}

.flx-doc-item h3 {
	margin-top: 0;
	font-size: 14px;
	color: #1d2327;
}

.flx-doc-item h3 .dashicons {
	vertical-align: middle;
	margin-right: 5px;
}

.flx-doc-item p {
	margin-bottom: 0;
}

.flx-doc-item a {
	color: #2271b1;
	text-decoration: none;
	line-height: 1.8;
}

.flx-doc-item a:hover {
	text-decoration: underline;
}

/* ========================================
	Responsive
	======================================== */

@media (max-width: 782px) {
	.flx-info-grid {
		grid-template-columns: 1fr;
	}

	.flx-doc-grid {
		grid-template-columns: 1fr;
	}
}
