.mpp-auth-shell .form-group,
.mpp-submit .mpp-field {
	margin-bottom: 18px;
}

.mpp-auth-shell input,
.mpp-submit input,
.mpp-submit select,
.mpp-submit textarea {
	width: 100%;
	border: 1px solid #ddddec;
	border-radius: 8px;
	background: #fff;
	color: #242263;
	font: inherit;
	padding: 12px 14px;
}

.mpp-auth-shell label,
.mpp-submit label {
	display: block;
	margin-bottom: 8px;
	color: #242263;
	font-weight: 700;
}

.mpp-notice {
	margin: 0 0 18px;
	padding: 14px 16px;
	border-radius: 8px;
	border: 1px solid rgba(36, 34, 99, 0.12);
	background: #fff;
	color: #242263;
}

.mpp-notice-success {
	border-color: rgba(99, 153, 51, 0.28);
	background: rgba(99, 153, 51, 0.1);
	color: #365c17;
}

.mpp-notice-error {
	border-color: rgba(188, 48, 48, 0.28);
	background: rgba(188, 48, 48, 0.08);
	color: #8b1e1e;
}

.mpp-dashboard,
.mpp-submit,
.mpp-redirect-box {
	width: min(1120px, calc(100% - 40px));
	margin: 0 auto;
	padding: 42px 0;
	font-family: "Inter", Sans-serif;
	color: #1b1b32;
}

.mpp-dashboard-hero {
	display: flex;
	justify-content: space-between;
	gap: 20px;
	align-items: center;
	margin-bottom: 24px;
	padding: 30px;
	border-radius: 12px;
	background: #242263;
	color: #fff;
}

.mpp-dashboard-hero h2 {
	margin: 0 0 8px;
	color: #fff;
	font-family: "Space Grotesk", Sans-serif;
	font-size: 34px;
	line-height: 1.15;
}

.mpp-dashboard-hero p {
	margin: 0;
	color: rgba(255, 255, 255, 0.78);
}

.mpp-eyebrow {
	margin-bottom: 8px !important;
	color: #8fc85a !important;
	font-size: 13px;
	font-weight: 700;
	text-transform: uppercase;
}

.mpp-primary-link,
.mpp-primary-button,
.mpp-logout-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 42px;
	padding: 12px 18px;
	border: 0;
	border-radius: 8px;
	background: #639933;
	color: #fff;
	font-weight: 700;
	text-decoration: none;
	cursor: pointer;
}

.mpp-primary-link:hover,
.mpp-primary-button:hover {
	background: #fff;
	color: #242263;
}

.mpp-dashboard-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	justify-content: flex-end;
}

.mpp-logout-link {
	border: 1px solid rgba(255, 255, 255, 0.42);
	background: transparent;
	color: #fff;
}

.mpp-logout-link:hover {
	border-color: #fff;
	background: #fff;
	color: #242263;
}

.mpp-stat-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 14px;
	margin-bottom: 24px;
}

.mpp-stat,
.mpp-publication-list,
.mpp-submit-form,
.mpp-guest-prompt {
	border: 1px solid rgba(36, 34, 99, 0.12);
	border-radius: 12px;
	background: #fff;
	box-shadow: 0 16px 40px rgba(36, 34, 99, 0.07);
}

.mpp-stat {
	padding: 20px;
}

.mpp-stat span {
	display: block;
	color: #242263;
	font-family: "Space Grotesk", Sans-serif;
	font-size: 32px;
	font-weight: 700;
	line-height: 1;
}

.mpp-stat p {
	margin: 8px 0 0;
	color: #5d5c8a;
	font-weight: 600;
}

.mpp-publication-list,
.mpp-submit-form,
.mpp-guest-prompt {
	padding: 24px;
}

.mpp-publication-list h3 {
	margin: 0 0 16px;
	color: #242263;
	font-family: "Space Grotesk", Sans-serif;
}

.mpp-table-wrap {
	overflow-x: auto;
}

.mpp-table {
	width: 100%;
	border-collapse: collapse;
}

.mpp-table th,
.mpp-table td {
	padding: 14px 12px;
	border-bottom: 1px solid #ececf5;
	text-align: left;
	vertical-align: top;
}

.mpp-table th {
	color: #242263;
	font-weight: 700;
}

.mpp-table a {
	color: #242263;
	font-weight: 700;
}

.mpp-status-pill {
	display: inline-flex;
	padding: 5px 10px;
	border-radius: 999px;
	background: rgba(36, 34, 99, 0.09);
	color: #242263;
	font-size: 12px;
	font-weight: 700;
}

.mpp-status-publish {
	background: rgba(99, 153, 51, 0.14);
	color: #4f7d25;
}

.mpp-status-pending {
	background: rgba(210, 154, 38, 0.14);
	color: #9b6613;
}

.mpp-empty {
	margin: 0;
	color: #5d5c8a;
}

.mpp-submit .mpp-dashboard-hero {
	margin-bottom: 18px;
}

.mpp-field p {
	margin: 8px 0 0;
	color: #5d5c8a;
	font-size: 13px;
}

@media (max-width: 760px) {
	.mpp-dashboard,
	.mpp-submit,
	.mpp-redirect-box {
		width: min(100% - 28px, 1120px);
		padding: 30px 0;
	}

	.mpp-dashboard-hero {
		display: block;
		padding: 24px;
	}

	.mpp-dashboard-hero h2 {
		font-size: 28px;
	}

	.mpp-dashboard-hero .mpp-primary-link {
		width: 100%;
		margin-top: 18px;
	}

	.mpp-dashboard-actions {
		margin-top: 18px;
		justify-content: stretch;
	}

	.mpp-dashboard-actions .mpp-primary-link,
	.mpp-dashboard-actions .mpp-logout-link {
		width: 100%;
		margin-top: 0;
	}

	.mpp-stat-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.mpp-table th,
	.mpp-table td {
		padding: 12px 10px;
	}
}

@media (max-width: 480px) {
	.mpp-stat-grid {
		grid-template-columns: 1fr;
	}
}
