/* =======================================================
   INLINE COMPONENT
   =======================================================
   Contains all inline shortcode styles for [ppf-quotes-inline]
   ======================================================= */

/* Inline Form Styles - WordPress Compliant */
.ppf-quotes-inline {
	max-width: 600px;
	margin: 20px auto;
	padding: 20px;
	border: 1px solid #ddd;
	border-radius: 8px;
	background: #fff;
	position: relative;
}

.ppf-quotes-inline-header {
	text-align: center;
	padding: 15px;
	border-radius: 8px 8px 0 0;
	background: var(--ppf-brand, #007cba);
}

.ppf-quotes-inline-header h3 {
	margin: 0;
	color: #fff;
}

.ppf-quotes-inline-logo {
	max-height: 80px;
	margin-bottom: 15px;
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.ppf-quotes-inline-instructions {
	margin-bottom: 15px;
	color: #666;
}

#ppf-quotes-inline-selections-legend {
	margin-bottom: 15px;
	font-weight: bold;
	color: var(--ppf-brand, inherit);
}

#ppf-quotes-inline-select {
	margin-bottom: 20px;
}

#ppf-quotes-inline-select .ppf-quotes-select-group {
	margin-bottom: 15px;
}

#ppf-quotes-inline-select .ppf-quotes-select-label {
	font-weight: bold;
	margin-bottom: 8px;
}

#ppf-quotes-inline-select select {
	width: 100%;
	padding: 8px;
	border: 1px solid #ddd;
	border-radius: 4px;
}

#ppf-quotes-inline-lead-form {
	margin-top: 20px;
}

#ppf-quotes-inline-lead-form p {
	margin-bottom: 15px;
	font-weight: bold;
}

#ppf-quotes-inline-lead-form-submit {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

#ppf-quotes-inline-lead-form input[type="text"],
#ppf-quotes-inline-lead-form input[type="email"],
#ppf-quotes-inline-lead-form input[type="tel"] {
	padding: 10px;
	border: 1px solid #ddd;
	border-radius: 4px;
}

#ppf-quotes-inline-honeypot {
	position: absolute !important;
	left: -9999px !important;
	width: 1px !important;
	height: 1px !important;
	overflow: hidden !important;
}

#ppf-quotes-inline-lead-form label {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 14px;
	color: #666;
	margin-top: 10px;
}

#ppf-quotes-inline-lead-form .ppf-quotes-inline-button-group {
	display: flex;
	gap: 10px;
	margin-top: 15px;
}

#ppf-quotes-inline-lead-form button {
	flex: 1;
	padding: 12px;
	color: white;
	border: none;
	border-radius: 4px;
	cursor: pointer;
	font-weight: bold;
}

#ppf-quotes-inline-lead-form button[type="submit"] {
	background: var(--ppf-accent, #007cba);
}

#ppf-quotes-inline-lead-form button[type="submit"]:hover {
	background: var(--ppf-accent-hover, #005a87);
}

#ppf-quotes-inline-lead-form button[type="button"] {
	background: var(--ppf-secondary, #666);
}

#ppf-quotes-inline-lead-form button[type="button"]:hover {
	background: var(--ppf-secondary-hover, #555);
}

#ppf-quotes-inline-lead-error {
	color: red;
	margin-top: 10px;
}

#ppf-quotes-inline-wizard-nav {
	margin-top: 20px;
	text-align: right;
}

#ppf-quotes-inline-prev {
	background: var(--ppf-secondary, #6c757d);
	color: #fff;
	border: none;
	padding: 10px 20px;
	border-radius: 4px;
	cursor: pointer;
}

#ppf-quotes-inline-prev:disabled {
	background: var(--ppf-disabled, #ccc);
	cursor: not-allowed;
}

#ppf-quotes-inline-notification {
	margin-top: 15px;
	padding: 10px;
	border-radius: 4px;
	text-align: center;
	font-weight: bold;
}

/* Inline Loader Styles */
#ppf-quotes-inline-loader-mask {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(255, 255, 255, 0.8);
	z-index: 10;
	display: none;
}

#ppf-quotes-inline-loader {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 48px;
	height: 48px;
	z-index: 11;
	display: none;
}