.pmc-signup-wrap,
.pmc-dashboard-wrap {
	max-width: 760px;
	margin: 0 auto;
	font-family: inherit;
}

.pmc-form fieldset {
	border: 1px solid #e2e2e2;
	border-radius: 8px;
	padding: 1.25rem;
	margin-bottom: 1.5rem;
}

.pmc-form legend {
	font-weight: 600;
	padding: 0 0.5rem;
}

.pmc-form label {
	display: block;
	margin-bottom: 1rem;
	font-weight: 500;
}

.pmc-form input[type="text"],
.pmc-form input[type="email"],
.pmc-form input[type="tel"],
.pmc-form input[type="url"],
.pmc-form textarea {
	display: block;
	width: 100%;
	margin-top: 0.35rem;
	padding: 0.6rem 0.75rem;
	border: 1px solid #ccc;
	border-radius: 6px;
	font-size: 1rem;
	box-sizing: border-box;
}

.pmc-checkbox-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
	gap: 0.5rem;
	margin-bottom: 1rem;
}

.pmc-checkbox {
	font-weight: 400;
	display: flex;
	align-items: center;
	gap: 0.4rem;
}

.pmc-btn {
	display: inline-block;
	padding: 0.7rem 1.4rem;
	border-radius: 6px;
	background: #f0f0f0;
	color: #222;
	text-decoration: none;
	border: none;
	cursor: pointer;
	font-size: 1rem;
	margin: 0.25rem 0.5rem 0.25rem 0;
}

.pmc-btn--primary {
	background: #2271b1;
	color: #fff;
}

.pmc-btn--danger {
	background: #d63638;
	color: #fff;
}

.pmc-fine-print {
	font-size: 0.85rem;
	color: #666;
}

.pmc-notice {
	padding: 0.8rem 1rem;
	border-radius: 6px;
	margin-bottom: 1rem;
}

.pmc-notice--success {
	background: #edfaef;
	border: 1px solid #b7e4bd;
	color: #1a5c27;
}

.pmc-notice--error {
	background: #fdeeee;
	border: 1px solid #f0b7b7;
	color: #7a1c1c;
}

.pmc-dashboard-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 1rem;
	margin-bottom: 2rem;
}

.pmc-card {
	border: 1px solid #e2e2e2;
	border-radius: 8px;
	padding: 1rem 1.25rem;
}

.pmc-status {
	font-weight: 600;
	padding: 0.3rem 0.6rem;
	border-radius: 4px;
	display: inline-block;
}

.pmc-status--approved { background: #edfaef; color: #1a5c27; }
.pmc-status--pending_review { background: #fff8e5; color: #8a6100; }
.pmc-status--rejected { background: #fdeeee; color: #7a1c1c; }
.pmc-status--draft,
.pmc-status--paused,
.pmc-status--expired { background: #f0f0f0; color: #444; }

/* --- Ad unit --- */
.pmc-ad {
	position: relative;
	display: inline-block;
	max-width: 100%;
}

.pmc-ad__label {
	position: absolute;
	top: 4px;
	left: 4px;
	background: rgba(0, 0, 0, 0.55);
	color: #fff;
	font-size: 0.65rem;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	padding: 2px 6px;
	border-radius: 3px;
	z-index: 2;
}

.pmc-ad__image {
	max-width: 100%;
	height: auto;
	display: block;
	border-radius: 4px;
}

@media (max-width: 600px) {
	.pmc-checkbox-grid {
		grid-template-columns: 1fr 1fr;
	}
}
