/**
 * Auto Form Builder - Base Admin Styles
 * Critical CSS loaded early to prevent FOUC (Flash of Unstyled Content)
 */

/* Base wrapper styles - Only target our plugin pages */
.auto-form-builder-admin-page .wrap {
	margin: 20px 0 0 2px;
}

/* Loading states to prevent layout shifts */
.google-sheets-admin-page,
.addons-admin-page,
.auto-form-builder-settings-container,
.submissions-admin-page {
	opacity: 1;
	transition: opacity 0.2s ease-in-out;
}

/* Form elements base styling - Only for our plugin forms */
.auto-form-builder-admin-page .form-table th {
	width: 200px;
	padding: 20px 10px 20px 0;
	line-height: 1.3;
	font-weight: 600;
}

.auto-form-builder-admin-page .form-table td {
	padding: 15px 10px;
	line-height: 1.3;
}

/* Button base styles - Removed (use WordPress default buttons) */

/* Admin notices styling - Removed (use WordPress default notices) */

/* Card-based layouts */
.auto-form-builder-card,
.addon-card,
.google-sheets-section {
	background: #fff;
	border: 1px solid #c3c4c7;
	box-shadow: 0 1px 1px rgb(0 0 0 / 4%);
	margin: 20px 0;
	padding: 20px;
}

/* Grid layouts */
.auto-form-builder-grid,
.addons-grid {
	display: grid;
	gap: 20px;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

/* Tab navigation */
.nav-tab-wrapper {
	border-bottom: 1px solid #c3c4c7;
	margin: 0 0 20px;
	padding-top: 9px;
}

.nav-tab {
	background: #f6f7f7;
	border: 1px solid #c3c4c7;
	border-bottom: none;
	color: #50575e;
	display: inline-block;
	font-size: 12px;
	font-weight: 600;
	line-height: 16px;
	margin: -1px 4px -1px 0;
	padding: 8px 14px;
	text-decoration: none;
	text-transform: uppercase;
}

.nav-tab-active {
	background: #fff;
	border-bottom: 1px solid #fff;
	color: #3c434a;
}

/* Prevent layout shift during asset loading */
.loading-placeholder {
	min-height: 200px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #646970;
}

/* Dashicons alignment */
.dashicons {
	vertical-align: middle;
	margin-right: 5px;
}

/* Responsive adjustments */
@media screen and (width <= 782px) {
	.auto-form-builder-grid,
	.addons-grid {
		grid-template-columns: 1fr;
	}

	.auto-form-builder-admin-page .form-table th,
	.auto-form-builder-admin-page .form-table td {
		display: block;
		width: auto;
		padding: 10px 0;
	}
}
