/**
 * AI Blog Poster — Admin styles.
 *
 * @package AI_Blog_Poster
 */

/* Dashboard cards grid */
.aibp-dashboard-cards {
	display: grid;
	grid-template-columns: repeat( auto-fit, minmax( 220px, 1fr ) );
	gap: 16px;
	margin: 20px 0;
}

.aibp-dashboard-cards .postbox {
	padding: 16px;
	margin: 0;
}

.aibp-dashboard-cards .postbox h2 {
	margin-top: 0;
}

.aibp-dashboard-cards a.postbox {
	text-decoration: none;
	color: inherit;
	display: block;
}

.aibp-dashboard-cards a.postbox:hover {
	border-color: #2271b1;
}

/* Help page postboxes */
.aibp-help-section {
	padding: 18px;
	margin-top: 18px;
}

.aibp-help-section h2 {
	margin-top: 0;
}

.aibp-help-section ul,
.aibp-help-section ol {
	margin-left: 20px;
}

.aibp-help-screenshot {
	max-width: 100%;
	height: auto;
	border: 1px solid #ccd0d4;
	border-radius: 8px;
	background: #0d1624;
}

/* Status indicators */
.aibp-status-ok {
	color: #008a20;
	margin-top: 6px;
}

.aibp-status-error {
	color: #b32d2e;
	margin-top: 6px;
}

/* Debug history pre block */
.aibp-debug-pre {
	white-space: pre-wrap;
	margin: 0;
}

/* Hide utility — used for initial state before JS runs */
.aibp-hidden {
	display: none;
}
