/**
 * All of the CSS for your admin-specific functionality should be
 * included in this file.
 */

.fps_admin_form form .fps_field {
	display: inline;
	padding: 6px 0;
	margin-right: 10px;
}

.fps_admin_form, .fps_shortcode_wrapper {
	padding: 40px 40px;
	margin: 20px 0;
	background: white;
	width: 42%;
	border-radius: 10px;
}

.fps_admin_form form .fps_field select {
	width: 100%;
}

.fps_admin_form form {
	display: flex;
	flex-direction: column;
	gap: 5px;
}

.fps_main_wrapper {
	gap: 20px;
	display: flex;
}

.fps_admin_form form label {
	width: 100%;
	color: black;
	padding: 0px 0;
	line-height: 30px;
	font-weight: 500;
	font-size: 16px;
	display: block;
}

.fps_support {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 20px;
	margin-top: 30px;
}

.fps_support_wrapper {
	background: #fff;
	padding: 20px;
	border-radius: 8px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.fps_support_wrapper h2 {
	margin-top: 0;
	color: #333;
	font-size: 1.2rem;
}

.fps_support_wrapper p {
	color: #666;
	line-height: 1.6;
}

.fps_shortcode_wrapper {
	background: #f8f9fa;
	border: 1px solid #e9ecef;
}

.fps_shortcode_wrapper code {
	background: #333;
	color: #fff;
	padding: 8px 12px;
	border-radius: 4px;
	display: inline-block;
	margin: 10px 0;
	font-family: 'Courier New', monospace;
}