/**
 * Public styles for MW Profile Claim
 */

/* Dashboard */
.mwpc-dashboard {
	max-width: 1200px;
	margin: 0 auto;
	padding: 20px;
}

.mwpc-dashboard-header {
	margin-bottom: 30px;
	padding-bottom: 15px;
	border-bottom: 2px solid #ddd;
}

.mwpc-dashboard-header h1 {
	margin: 0 0 10px;
}

.mwpc-dashboard-header .description {
	color: #666;
	margin: 0;
}

.mwpc-dashboard-empty {
	text-align: center;
	padding: 60px 20px;
	background: #f9f9f9;
	border: 1px dashed #ddd;
	border-radius: 8px;
}

.mwpc-dashboard-section {
	margin-bottom: 40px;
}

.mwpc-dashboard-section h2 {
	margin: 0 0 20px;
	font-size: 24px;
}

.mwpc-dashboard-section .count {
	color: #666;
	font-size: 18px;
	font-weight: normal;
}

.mwpc-dashboard-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	gap: 20px;
}

.mwpc-dashboard-card {
	background: #fff;
	border: 1px solid #ddd;
	border-radius: 8px;
	padding: 20px;
	transition: box-shadow 0.3s;
}

.mwpc-dashboard-card:hover {
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.mwpc-dashboard-card .card-header {
	display: flex;
	gap: 15px;
	margin-bottom: 15px;
}

.mwpc-dashboard-card .card-thumbnail {
	flex-shrink: 0;
}

.mwpc-dashboard-card .card-thumbnail img {
	width: 60px;
	height: 60px;
	object-fit: cover;
	border-radius: 4px;
}

.mwpc-dashboard-card .card-title h3 {
	margin: 0 0 5px;
	font-size: 18px;
}

.mwpc-dashboard-card .card-meta {
	margin: 0;
	font-size: 13px;
	color: #666;
}

.mwpc-dashboard-card .separator {
	margin: 0 5px;
}

.mwpc-dashboard-card .card-actions {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
}

.mwpc-dashboard-footer {
	margin-top: 40px;
	padding-top: 20px;
	border-top: 1px solid #ddd;
	text-align: center;
}

/* Status badges */
.mwpc-status-badge {
	display: inline-block;
	padding: 2px 8px;
	border-radius: 3px;
	font-size: 11px;
	font-weight: 600;
	text-transform: uppercase;
}

.mwpc-badge-pending {
	background: #f0f0f1;
	color: #646970;
}

.mwpc-badge-publish {
	background: #00a32a;
	color: #fff;
}

.mwpc-badge-draft {
	background: #dba617;
	color: #fff;
}

/* Buttons */
.mwpc-claim-button,
.mwpc-edit-button {
	display: inline-block;
	padding: 10px 20px;
	background: #0073aa;
	color: #fff;
	text-decoration: none;
	border-radius: 4px;
	transition: background 0.3s;
}

.mwpc-claim-button:hover,
.mwpc-edit-button:hover {
	background: #005a87;
	color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
	.mwpc-dashboard-grid {
		grid-template-columns: 1fr;
	}
}

/* Forms */
.mwpc-form,
.mwpc-claim-form,
.mwpc-professional-form-wrapper,
.mwpc-edit-form-wrapper,
.mwpc-claim-form-wrapper {
	max-width: 800px;
	margin: 0 auto;
	padding: 30px 20px;
	background: #f9fafb;
	border-radius: 16px;
}

.mwpc-form-header,
.mwpc-claim-header,
.mwpc-edit-header {
	margin-bottom: 25px;
	padding-bottom: 15px;
	border-bottom: 3px solid #e5e7eb;
}

.mwpc-form-header h1,
.mwpc-claim-header h1,
.mwpc-edit-header h1 {
	margin: 0 0 8px;
	font-size: 28px;
	font-weight: 800;
	color: #111827;
	letter-spacing: -0.02em;
}

.mwpc-form-header .description {
	color: #374151;
	margin: 0;
	font-size: 15px;
	line-height: 1.5;
}

/* Hide edit form header on single pages since hero already shows profile name */
body.single .mwpc-edit-header {
	display: none !important;
}

/* Hide the top-level form description (not field descriptions) */
body.single .mwpc-acf-form-container > form > p.description:first-of-type,
body.single .mwpc-acf-form-container > .acf-form > p.description:first-of-type {
	display: none !important;
}

.form-section {
	background: #ffffff;
	border: 2px solid #e5e7eb;
	border-radius: 12px;
	padding: 30px;
	margin-bottom: 25px;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.form-section h2,
.form-section h3 {
	margin: 0 0 20px;
	padding-bottom: 12px;
	border-bottom: 2px solid #e5e7eb;
	font-size: 22px;
	font-weight: 700;
	color: #111827;
}

/* Force dark color for section description that appears after heading */
.form-section > p.description:first-of-type,
.form-section h2 + p.description,
.form-section h3 + p.description {
	color: #111827 !important;
}

.form-field {
	margin-bottom: 20px;
}

.form-field label {
	display: block;
	margin-bottom: 8px;
	font-weight: 600;
	font-size: 14px;
	color: #1f2937;
	letter-spacing: 0.01em;
}

.form-field .required {
	color: #d63638;
	margin-left: 3px;
}

.form-field .recommended {
	color: #6b7280;
	font-weight: normal;
	font-size: 13px;
}

.mwpc-form .form-field input[type="text"],
.mwpc-professional-form-wrapper .form-field input[type="text"],
.mwpc-claim-form .form-field input[type="text"],
.mwpc-form .form-field input[type="email"],
.mwpc-professional-form-wrapper .form-field input[type="email"],
.mwpc-claim-form .form-field input[type="email"],
.mwpc-form .form-field input[type="url"],
.mwpc-professional-form-wrapper .form-field input[type="url"],
.mwpc-claim-form .form-field input[type="url"],
.mwpc-form .form-field input[type="password"],
.mwpc-professional-form-wrapper .form-field input[type="password"],
.mwpc-claim-form .form-field input[type="password"],
.mwpc-form .form-field input[type="number"],
.mwpc-professional-form-wrapper .form-field input[type="number"],
.mwpc-claim-form .form-field input[type="number"],
.mwpc-form .form-field select,
.mwpc-professional-form-wrapper .form-field select,
.mwpc-claim-form .form-field select,
.mwpc-form .form-field textarea,
.mwpc-professional-form-wrapper .form-field textarea,
.mwpc-claim-form .form-field textarea {
	width: 100% !important;
	max-width: 100% !important;
	padding: 12px 16px !important;
	border: 2px solid #d1d5db !important;
	border-radius: 8px !important;
	font-size: 15px !important;
	background: #ffffff !important;
	background-color: #ffffff !important;
	color: #1f2937 !important;
	transition: all 0.2s ease !important;
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05) !important;
}

/* Select-specific styles */
.mwpc-form .form-field select,
.mwpc-professional-form-wrapper .form-field select,
.mwpc-claim-form .form-field select {
	cursor: pointer !important;
	appearance: none !important;
	-webkit-appearance: none !important;
	-moz-appearance: none !important;
	background-image: url('data:image/svg+xml;charset=UTF-8,%3csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%236b7280" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"%3e%3cpolyline points="6 9 12 15 18 9"%3e%3c/polyline%3e%3c/svg%3e') !important;
	background-repeat: no-repeat !important;
	background-position: right 12px center !important;
	background-size: 20px !important;
	padding-right: 40px !important;
}

/* Textarea-specific styles */
.mwpc-form .form-field textarea,
.mwpc-professional-form-wrapper .form-field textarea,
.mwpc-claim-form .form-field textarea {
	min-height: 120px !important;
	resize: vertical !important;
	font-family: inherit !important;
	line-height: 1.6 !important;
}

/* Hover states */
.mwpc-form .form-field input[type="text"]:hover,
.mwpc-professional-form-wrapper .form-field input[type="text"]:hover,
.mwpc-form .form-field input[type="email"]:hover,
.mwpc-professional-form-wrapper .form-field input[type="email"]:hover,
.mwpc-form .form-field input[type="url"]:hover,
.mwpc-professional-form-wrapper .form-field input[type="url"]:hover,
.mwpc-form .form-field input[type="password"]:hover,
.mwpc-professional-form-wrapper .form-field input[type="password"]:hover,
.mwpc-form .form-field input[type="number"]:hover,
.mwpc-professional-form-wrapper .form-field input[type="number"]:hover,
.mwpc-form .form-field select:hover,
.mwpc-professional-form-wrapper .form-field select:hover,
.mwpc-form .form-field textarea:hover,
.mwpc-professional-form-wrapper .form-field textarea:hover {
	border-color: #9ca3af !important;
}

/* Focus states */
.mwpc-form .form-field input[type="text"]:focus,
.mwpc-professional-form-wrapper .form-field input[type="text"]:focus,
.mwpc-form .form-field input[type="email"]:focus,
.mwpc-professional-form-wrapper .form-field input[type="email"]:focus,
.mwpc-form .form-field input[type="url"]:focus,
.mwpc-professional-form-wrapper .form-field input[type="url"]:focus,
.mwpc-form .form-field input[type="password"]:focus,
.mwpc-professional-form-wrapper .form-field input[type="password"]:focus,
.mwpc-form .form-field input[type="number"]:focus,
.mwpc-professional-form-wrapper .form-field input[type="number"]:focus,
.mwpc-form .form-field select:focus,
.mwpc-professional-form-wrapper .form-field select:focus,
.mwpc-form .form-field textarea:focus,
.mwpc-professional-form-wrapper .form-field textarea:focus {
	border-color: #f8cd02 !important;
	outline: none !important;
	box-shadow: 0 0 0 3px rgba(248, 205, 2, 0.2) !important;
	background: #fffef7 !important;
	background-color: #fffef7 !important;
}

/* Placeholder styles */
.mwpc-form .form-field input[type="text"]::placeholder,
.mwpc-professional-form-wrapper .form-field input[type="text"]::placeholder,
.mwpc-form .form-field input[type="email"]::placeholder,
.mwpc-professional-form-wrapper .form-field input[type="email"]::placeholder,
.mwpc-form .form-field input[type="url"]::placeholder,
.mwpc-professional-form-wrapper .form-field input[type="url"]::placeholder,
.mwpc-form .form-field input[type="password"]::placeholder,
.mwpc-professional-form-wrapper .form-field input[type="password"]::placeholder,
.mwpc-form .form-field input[type="number"]::placeholder,
.mwpc-professional-form-wrapper .form-field input[type="number"]::placeholder,
.mwpc-form .form-field textarea::placeholder,
.mwpc-professional-form-wrapper .form-field textarea::placeholder {
	color: #9ca3af !important;
}

.mwpc-form .form-field .description,
.mwpc-professional-form-wrapper .form-field .description,
.mwpc-claim-form .form-field .description,
.mwpc-edit-form-wrapper .form-field .description,
.mwpc-form .form-section > .description,
.mwpc-professional-form-wrapper .form-section > .description,
.mwpc-claim-form .form-section > .description,
.mwpc-edit-form-wrapper .form-section > .description,
.mwpc-professional-form-wrapper p.description,
.mwpc-form p.description,
.mwpc-claim-form p.description,
.mwpc-edit-form-wrapper p.description,
.mwpc-professional-form-wrapper .description,
.mwpc-form .description,
.mwpc-claim-form .description,
.mwpc-edit-form-wrapper .description,
div.mwpc-professional-form-wrapper .form-section p.description,
div.mwpc-professional-form-wrapper .form-field p.description,
div.mwpc-form .form-section p.description,
div.mwpc-form .form-field p.description {
	margin: 8px 0 0 !important;
	font-size: 14px !important;
	color: #111827 !important;
	line-height: 1.6 !important;
}

.mwpc-form .form-field input[type="file"],
.mwpc-professional-form-wrapper .form-field input[type="file"],
.mwpc-claim-form .form-field input[type="file"] {
	padding: 10px 0 !important;
	cursor: pointer !important;
	font-size: 14px !important;
}

.mwpc-form .form-field input[type="file"]::file-selector-button,
.mwpc-professional-form-wrapper .form-field input[type="file"]::file-selector-button,
.mwpc-claim-form .form-field input[type="file"]::file-selector-button {
	padding: 8px 16px !important;
	border: 2px solid #d1d5db !important;
	border-radius: 6px !important;
	background: #ffffff !important;
	background-color: #ffffff !important;
	color: #374151 !important;
	font-weight: 600 !important;
	font-size: 14px !important;
	cursor: pointer !important;
	transition: all 0.2s ease !important;
	margin-right: 12px !important;
}

.mwpc-form .form-field input[type="file"]::file-selector-button:hover,
.mwpc-professional-form-wrapper .form-field input[type="file"]::file-selector-button:hover,
.mwpc-claim-form .form-field input[type="file"]::file-selector-button:hover {
	background: #f9fafb !important;
	background-color: #f9fafb !important;
	border-color: #9ca3af !important;
}

/* Checkbox styling */
.mwpc-form .form-field input[type="checkbox"],
.mwpc-professional-form-wrapper .form-field input[type="checkbox"],
.mwpc-claim-form .form-field input[type="checkbox"] {
	width: 18px !important;
	height: 18px !important;
	min-width: 18px !important;
	margin-right: 10px !important;
	margin-top: 0 !important;
	cursor: pointer !important;
	border: 2px solid #d1d5db !important;
	border-radius: 4px !important;
	accent-color: #f8cd02 !important;
	vertical-align: middle !important;
	flex-shrink: 0 !important;
}

/* Checkbox label container - make it flexbox for proper alignment */
.mwpc-form .form-section .form-field label,
.mwpc-professional-form-wrapper .form-section .form-field label,
.mwpc-claim-form .form-section .form-field label {
	display: flex !important;
	align-items: flex-start !important;
	gap: 12px !important;
	cursor: pointer !important;
	font-weight: normal !important;
	line-height: 1.6 !important;
	margin-bottom: 0 !important;
}

/* Checkbox label text wrapper */
.mwpc-form .form-field label .checkbox-label-text,
.mwpc-professional-form-wrapper .form-field label .checkbox-label-text,
.mwpc-claim-form .form-field label .checkbox-label-text {
	flex: 1 !important;
	font-size: 15px !important;
	color: #1f2937 !important;
	line-height: 1.6 !important;
	padding-top: 1px !important;
}

/* Checkbox label links (e.g., terms and conditions) */
.mwpc-form .form-field label a,
.mwpc-professional-form-wrapper .form-field label a,
.mwpc-claim-form .form-field label a {
	color: #f8cd02 !important;
	text-decoration: underline !important;
	font-weight: 600 !important;
	transition: color 0.2s ease !important;
	display: inline !important;
}

.mwpc-form .form-field label a:hover,
.mwpc-professional-form-wrapper .form-field label a:hover,
.mwpc-claim-form .form-field label a:hover {
	color: #d4ad02 !important;
}

.form-actions {
	display: flex;
	gap: 12px;
	margin-top: 30px;
	padding-top: 20px;
	border-top: 1px solid #ddd;
}

.form-actions .button {
	padding: 12px 24px;
	font-size: 15px;
	border-radius: 4px;
	text-decoration: none;
	cursor: pointer;
	transition: all 0.3s;
}

.form-actions .button-primary {
	background: linear-gradient(to right, #f8cd02, #d4ad02);
	color: #000;
	border: none;
	font-weight: 700;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.form-actions .button-primary:hover {
	background: linear-gradient(to right, #d4ad02, #f8cd02);
	transform: translateY(-1px);
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.form-actions .button-secondary {
	background: #ffffff;
	color: #374151;
	border: 2px solid #d1d5db;
	font-weight: 600;
}

.form-actions .button-secondary:hover {
	background: #f9fafb;
	border-color: #9ca3af;
}

/* Login Prompt */
.mwpc-login-prompt {
	text-align: center;
	padding: 40px 20px;
	background: #f9f9f9;
	border: 1px solid #ddd;
	border-radius: 8px;
}

/* WordPress Login Form Styling */
.login {
	max-width: 400px;
	margin: 0 auto;
}

.login form {
	background: #fff;
	border: 1px solid #ddd;
	border-radius: 8px;
	padding: 30px;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.login label {
	display: block;
	margin-bottom: 8px;
	font-weight: 600;
	color: #333;
	font-size: 14px;
}

.login input[type="text"],
.login input[type="password"] {
	width: 100%;
	padding: 10px 12px;
	border: 1px solid #ddd;
	border-radius: 4px;
	font-size: 14px;
	margin-bottom: 20px;
	transition: border-color 0.3s;
}

.login input[type="text"]:focus,
.login input[type="password"]:focus {
	border-color: #f8cd02;
	outline: none;
	box-shadow: 0 0 0 1px #f8cd02;
}

.login .login-remember {
	margin-bottom: 20px;
}

.login .login-remember label {
	display: inline;
	font-weight: normal;
	margin-left: 5px;
}

.login input[type="checkbox"] {
	margin-right: 5px;
}

.login input[type="submit"],
.login .button-primary {
	background: linear-gradient(to right, #f8cd02, #d4ad02);
	color: #000;
	border: none;
	padding: 12px 24px;
	font-size: 15px;
	font-weight: 700;
	border-radius: 4px;
	cursor: pointer;
	width: 100%;
	transition: all 0.2s;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.login input[type="submit"]:hover,
.login .button-primary:hover {
	background: linear-gradient(to right, #d4ad02, #f8cd02);
	transform: translateY(-1px);
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

/* Messages */
#claim-form-messages,
#professional-form-messages {
	margin-top: 20px;
}

.mwpc-message {
	padding: 12px 16px;
	border-left: 4px solid #00a32a;
	background: #f0f6fc;
	margin-bottom: 20px;
	border-radius: 4px;
}

.mwpc-message.error {
	border-left-color: #d63638;
	background: #fcf0f1;
}

.mwpc-message.warning {
	border-left-color: #dba617;
	background: #fcf9e8;
}

.post-info {
	color: #666;
	margin: 10px 0;
}

.post-meta {
	font-size: 14px;
	color: #666;
}

.separator {
	margin: 0 8px;
	color: #ddd;
}

.restricted-fields-note {
	margin-top: 20px;
	padding: 12px;
	background: #f9f9f9;
	border-radius: 4px;
	font-size: 13px;
	color: #666;
}

/* ACF Form Overrides */
.acf-form {
	background: transparent !important;
	border: none !important;
	padding: 0 !important;
}

.acf-form .acf-field {
	margin-bottom: 20px;
}

.acf-form .acf-label label {
	font-weight: 600;
	color: #333;
}

/* Form Responsive */
@media (max-width: 768px) {
	.mwpc-form,
	.mwpc-claim-form,
	.mwpc-professional-form-wrapper,
	.mwpc-edit-form-wrapper,
	.mwpc-claim-form-wrapper {
		padding: 15px;
	}

	.form-section {
		padding: 20px 15px;
	}

	.form-actions {
		flex-direction: column;
	}

	.form-actions .button {
		width: 100%;
	}
}

/* ======================================
   Professional CTA Banner
   ====================================== */

.mwpc-professional-cta {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color: #fff;
	padding: 3rem 2rem;
	margin: 2rem 0;
	border-radius: 8px;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.mwpc-cta-content {
	max-width: 800px;
	margin: 0 auto;
	text-align: center;
}

.mwpc-professional-cta h3 {
	font-size: 2rem;
	margin: 0 0 1rem;
	color: #fff;
	font-weight: 700;
}

.mwpc-professional-cta p {
	font-size: 1.125rem;
	margin: 0 0 2rem;
	opacity: 0.95;
	line-height: 1.6;
}

.mwpc-cta-buttons {
	display: flex;
	gap: 1rem;
	justify-content: center;
	flex-wrap: wrap;
}

.mwpc-cta-button {
	display: inline-block;
	padding: 0.875rem 2rem;
	font-size: 1rem;
	font-weight: 600;
	text-decoration: none;
	border-radius: 4px;
	transition: all 0.3s ease;
	cursor: pointer;
}

.mwpc-cta-primary {
	background: #fff;
	color: #667eea;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.mwpc-cta-primary:hover {
	background: #f0f0f0;
	transform: translateY(-2px);
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
	color: #667eea;
}

.mwpc-cta-secondary {
	background: rgba(255, 255, 255, 0.2);
	color: #fff;
	border: 2px solid rgba(255, 255, 255, 0.8);
}

.mwpc-cta-secondary:hover {
	background: rgba(255, 255, 255, 0.3);
	border-color: #fff;
	transform: translateY(-2px);
	color: #fff;
}

/* Auto-injected buttons */
.mwpc-auto-buttons {
	margin-bottom: 2rem;
	padding: 1rem;
	background: #f9fafb;
	border-radius: 6px;
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;
}

@media (max-width: 768px) {
	.mwpc-professional-cta {
		padding: 2rem 1.5rem;
	}

	.mwpc-professional-cta h3 {
		font-size: 1.5rem;
	}

	.mwpc-professional-cta p {
		font-size: 1rem;
	}

	.mwpc-cta-buttons {
		flex-direction: column;
	}

	.mwpc-cta-button {
		width: 100%;
	}

	.mwpc-auto-buttons {
		flex-direction: column;
	}
}

/* ======================================
   Profile Claim/Edit Banners
   ====================================== */

/* Claim Banner (for claimable profiles) */
.mwpc-claim-banner {
	background: linear-gradient(to right, #f8cd02, #d4ad02);
	border-left: 4px solid #000;
	margin-bottom: 1.5rem;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.mwpc-claim-banner .mwpc-banner-content {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding: 1rem 0;
}

.mwpc-claim-banner .mwpc-banner-message {
	display: flex;
	align-items: flex-start;
	gap: 0.75rem;
	flex: 1;
}

.mwpc-claim-banner .mwpc-banner-icon {
	width: 1.25rem;
	height: 1.25rem;
	color: #000;
	flex-shrink: 0;
	margin-top: 0.125rem;
}

.mwpc-claim-banner .mwpc-banner-text {
	color: #000;
	font-size: 0.9375rem;
	line-height: 1.5;
}

.mwpc-claim-banner .mwpc-banner-text strong {
	font-weight: 600;
}

.mwpc-claim-banner .mwpc-banner-text span {
	margin-left: 0.25rem;
}

.mwpc-claim-banner .mwpc-banner-actions {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	flex-shrink: 0;
}

/* Edit Banner (for owned profiles) */
.mwpc-edit-banner {
	background: #1a1a1a;
	border-left: 4px solid #f8cd02;
	margin-bottom: 1.5rem;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.mwpc-edit-banner .mwpc-banner-content {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding: 1rem 0;
}

.mwpc-edit-banner .mwpc-banner-message {
	display: flex;
	align-items: flex-start;
	gap: 0.75rem;
	flex: 1;
}

.mwpc-edit-banner .mwpc-banner-icon {
	width: 1.25rem;
	height: 1.25rem;
	color: #f8cd02;
	flex-shrink: 0;
	margin-top: 0.125rem;
}

.mwpc-edit-banner .mwpc-banner-text {
	color: #fff;
	font-size: 0.9375rem;
	line-height: 1.5;
}

.mwpc-edit-banner .mwpc-banner-text strong {
	font-weight: 600;
}

.mwpc-edit-banner .mwpc-banner-text span {
	color: #d1d5db;
	margin-left: 0.25rem;
}

.mwpc-edit-banner .mwpc-banner-actions {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	flex-shrink: 0;
}

/* Button Styles */
.mwpc-btn {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.5rem 1.25rem;
	font-size: 0.875rem;
	font-weight: 700;
	text-decoration: none;
	white-space: nowrap;
	transition: all 0.2s;
	cursor: pointer;
}

.mwpc-claim-banner .mwpc-btn-primary {
	background: #000;
	color: #f8cd02;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.mwpc-claim-banner .mwpc-btn-primary:hover {
	background: #1a1a1a;
	transform: translateY(-1px);
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.mwpc-claim-banner .mwpc-btn-secondary {
	background: transparent;
	color: #000;
	font-weight: 500;
	padding: 0.5rem 1rem;
}

.mwpc-claim-banner .mwpc-btn-secondary:hover {
	text-decoration: underline;
}

.mwpc-edit-banner .mwpc-btn-primary {
	background: linear-gradient(to right, #f8cd02, #d4ad02);
	color: #000;
}

.mwpc-edit-banner .mwpc-btn-primary:hover {
	background: linear-gradient(to right, #d4ad02, #f8cd02);
}

.mwpc-edit-banner .mwpc-btn-secondary {
	background: transparent;
	color: #fff;
	font-weight: 500;
	padding: 0.5rem 1rem;
}

.mwpc-edit-banner .mwpc-btn-secondary:hover {
	color: #f8cd02;
}

/* Pending Approval Banner */
.mwpc-pending-banner {
	background: linear-gradient(to right, #fef3c7, #fde68a);
	border-left: 4px solid #f59e0b;
	margin-bottom: 1.5rem;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.mwpc-pending-banner .mwpc-banner-content {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding: 1rem 0;
}

.mwpc-pending-banner .mwpc-banner-message {
	display: flex;
	align-items: flex-start;
	gap: 0.75rem;
	flex: 1;
}

.mwpc-pending-banner .mwpc-banner-icon {
	width: 1.5rem;
	height: 1.5rem;
	color: #d97706;
	flex-shrink: 0;
	margin-top: 0.125rem;
}

.mwpc-pending-banner .mwpc-banner-text {
	color: #78350f;
	font-size: 0.9375rem;
	line-height: 1.5;
}

.mwpc-pending-banner .mwpc-banner-text strong {
	font-weight: 700;
	font-size: 1.0625rem;
	display: block;
	margin-bottom: 0.25rem;
}

.mwpc-pending-banner .mwpc-banner-text span {
	color: #92400e;
	display: block;
}

.mwpc-pending-banner .mwpc-banner-actions {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	flex-shrink: 0;
}

.mwpc-pending-banner .mwpc-btn-primary {
	background: linear-gradient(to right, #f59e0b, #d97706);
	color: #fff;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}

.mwpc-pending-banner .mwpc-btn-primary:hover {
	background: linear-gradient(to right, #d97706, #f59e0b);
	transform: translateY(-1px);
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Archive CTAs - DEPRECATED: Now using breadcrumb actions instead */
/* Hide these elements as they are no longer rendered by PHP */
.mwpc-archive-cta-professionals,
.mwpc-archive-cta-general {
	display: none !important;
}

/* Legacy styles kept for reference only */
.mwpc-archive-cta-professionals-legacy {
	background: #1a1a1a !important;
	border-left: 4px solid #f8cd02 !important;
	margin-bottom: 2rem !important;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2) !important;
	border-radius: 0 !important;
	padding: 0 !important;
}

.mwpc-archive-cta-professionals .mwpc-banner-content {
	display: flex !important;
	align-items: center !important;
	justify-content: space-between !important;
	gap: 1rem !important;
	padding: 1rem 0 !important;
}

.mwpc-archive-cta-professionals .mwpc-banner-message {
	display: flex;
	align-items: flex-start;
	gap: 0.75rem;
	flex: 1;
}

.mwpc-archive-cta-professionals .mwpc-banner-icon {
	width: 1.25rem;
	height: 1.25rem;
	color: #f8cd02;
	flex-shrink: 0;
	margin-top: 0.125rem;
}

.mwpc-archive-cta-professionals .mwpc-banner-text {
	color: #fff !important;
	font-size: 0.9375rem;
	line-height: 1.5;
}

.mwpc-archive-cta-professionals .mwpc-banner-text strong {
	font-weight: 600;
}

.mwpc-archive-cta-professionals .mwpc-banner-text span {
	color: #d1d5db !important;
	margin-left: 0.25rem;
}

.mwpc-archive-cta-professionals .mwpc-banner-actions {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	flex-shrink: 0;
}

.mwpc-archive-cta-professionals .mwpc-btn-primary {
	background: linear-gradient(to right, #f8cd02, #d4ad02) !important;
	color: #000 !important;
}

.mwpc-archive-cta-professionals .mwpc-btn-primary:hover {
	background: linear-gradient(to right, #d4ad02, #f8cd02) !important;
}

.mwpc-archive-cta-professionals .mwpc-btn-secondary {
	background: transparent !important;
	color: #fff !important;
	font-weight: 500;
	padding: 0.5rem 1rem;
}

.mwpc-archive-cta-professionals .mwpc-btn-secondary:hover {
	color: #f8cd02 !important;
}

.mwpc-archive-cta-general {
	background: linear-gradient(to right, #f8cd02, #d4ad02) !important;
	border-left: 4px solid #000 !important;
	margin-bottom: 2rem !important;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1) !important;
	border-radius: 0 !important;
	padding: 0 !important;
}

.mwpc-archive-cta-general .mwpc-banner-content {
	display: flex !important;
	align-items: center !important;
	justify-content: space-between !important;
	gap: 1rem !important;
	padding: 1rem 0 !important;
}

.mwpc-archive-cta-general .mwpc-banner-message {
	display: flex;
	align-items: flex-start;
	gap: 0.75rem;
	flex: 1;
}

.mwpc-archive-cta-general .mwpc-banner-icon {
	width: 1.25rem;
	height: 1.25rem;
	color: #000;
	flex-shrink: 0;
	margin-top: 0.125rem;
}

.mwpc-archive-cta-general .mwpc-banner-text {
	color: #000 !important;
	font-size: 0.9375rem;
	line-height: 1.5;
}

.mwpc-archive-cta-general .mwpc-banner-text strong {
	font-weight: 600;
}

.mwpc-archive-cta-general .mwpc-banner-text span {
	margin-left: 0.25rem;
}

.mwpc-archive-cta-general .mwpc-banner-actions {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	flex-shrink: 0;
}

.mwpc-archive-cta-general .mwpc-btn-primary {
	background: #000 !important;
	color: #f8cd02 !important;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.mwpc-archive-cta-general .mwpc-btn-primary:hover {
	background: #1a1a1a !important;
	transform: translateY(-1px);
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

/* Responsive adjustments for banners */
@media (max-width: 768px) {
	.mwpc-claim-banner .mwpc-banner-content,
	.mwpc-edit-banner .mwpc-banner-content,
	.mwpc-pending-banner .mwpc-banner-content,
	.mwpc-archive-cta-professionals .mwpc-banner-content,
	.mwpc-archive-cta-general .mwpc-banner-content {
		flex-direction: column;
		align-items: flex-start;
		gap: 1rem;
	}

	.mwpc-claim-banner .mwpc-banner-actions,
	.mwpc-edit-banner .mwpc-banner-actions,
	.mwpc-pending-banner .mwpc-banner-actions,
	.mwpc-archive-cta-professionals .mwpc-banner-actions,
	.mwpc-archive-cta-general .mwpc-banner-actions {
		flex-direction: column;
		width: 100%;
	}

	.mwpc-btn {
		width: 100%;
		justify-content: center;
	}
}

/* ======================================
   Verified Badge
   ====================================== */

.mwpc-verified-badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	vertical-align: middle;
	margin-left: 0.5rem;
	flex-shrink: 0;
	position: relative;
	top: -0.1em;
}

.mwpc-verified-badge svg {
	display: block;
	color: #f8cd02;
	filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2));
}

/* Size variants */
.mwpc-verified-badge-small svg {
	width: 16px !important;
	height: 16px !important;
	min-width: 16px !important;
	min-height: 16px !important;
	max-width: 16px !important;
	max-height: 16px !important;
}

.mwpc-verified-badge-medium svg {
	width: 24px !important;
	height: 24px !important;
	min-width: 24px !important;
	min-height: 24px !important;
	max-width: 24px !important;
	max-height: 24px !important;
}

.mwpc-verified-badge-large svg {
	width: 32px !important;
	height: 32px !important;
	min-width: 32px !important;
	min-height: 32px !important;
	max-width: 32px !important;
	max-height: 32px !important;
}

/* Additional specificity for headings */
h1 .mwpc-verified-badge-small svg,
h2 .mwpc-verified-badge-small svg,
h3 .mwpc-verified-badge-small svg,
h4 .mwpc-verified-badge-small svg {
	width: 16px !important;
	height: 16px !important;
}

/* Hover effect for interactive elements */
a:hover .mwpc-verified-badge svg {
	color: #d4ad02;
}

/* Responsive adjustments */
@media (max-width: 768px) {
	.mwpc-verified-badge {
		margin-left: 0.25em;
	}
}
