.mll-form,
.mll-card,
.mll-pricing,
.mll-account {
	box-sizing: border-box;
}

.mll-form {
	display: grid;
	gap: 14px;
	max-width: 680px;
	width: 100%;
}

.mll-form label {
	color: #1f2937;
	display: grid;
	font-weight: 700;
	gap: 6px;
}

.mll-form input,
.mll-form select,
.mll-form textarea {
	background: #fff;
	border: 1px solid #cbd5e1;
	border-radius: 6px;
	color: #111827;
	font: inherit;
	min-height: 44px;
	padding: 10px 12px;
	width: 100%;
}

.mll-inline {
	align-items: center;
	display: flex !important;
	flex-direction: row;
	font-weight: 500 !important;
	gap: 8px !important;
}

.mll-inline input {
	min-height: auto;
	width: auto;
}

.mll-button {
	align-items: center;
	background: #2563eb;
	border: 0;
	border-radius: 6px;
	color: #fff;
	cursor: pointer;
	display: inline-flex;
	font-weight: 800;
	justify-content: center;
	min-height: 44px;
	padding: 10px 16px;
	text-decoration: none;
	transition: background 160ms ease;
	width: fit-content;
}

.mll-button:hover,
.mll-button:focus {
	background: #1d4ed8;
	color: #fff;
	text-decoration: none;
}

.mll-button-secondary {
	background: #0f172a;
}

.mll-button-secondary:hover,
.mll-button-secondary:focus {
	background: #334155;
}

.mll-button-danger {
	background: #b91c1c;
}

.mll-button-danger:hover,
.mll-button-danger:focus {
	background: #991b1b;
}

.mll-button-disabled {
	opacity: 0.55;
	pointer-events: none;
}

.mll-card {
	background: #fff;
	border: 1px solid #e5e7eb;
	border-radius: 8px;
	box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
	margin-bottom: 20px;
	padding: 22px;
}

.mll-card h3 {
	margin-top: 0;
}

.mll-account {
	display: grid;
	gap: 20px;
}

.mll-status-grid {
	display: grid;
	gap: 14px;
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.mll-status-grid div {
	background: #f8fafc;
	border: 1px solid #e5e7eb;
	border-radius: 6px;
	padding: 14px;
}

.mll-status-grid strong,
.mll-status-grid span {
	display: block;
}

.mll-status-grid strong {
	color: #475569;
	font-size: 12px;
	text-transform: uppercase;
}

.mll-status-grid span {
	color: #0f172a;
	font-size: 16px;
	font-weight: 800;
	margin-top: 4px;
}

.mll-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 18px;
}

.mll-actions form {
	margin: 0;
}

.mll-pricing {
	display: grid;
	gap: 20px;
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.mll-price-card {
	display: grid;
	gap: 10px;
}

.mll-price {
	color: #2563eb;
	font-size: 22px;
	font-weight: 900;
	margin: 0;
}

.mll-muted,
.mll-plan-note {
	color: #64748b;
	font-size: 14px;
	font-weight: 700;
}

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

.mll-table th,
.mll-table td {
	border-bottom: 1px solid #e5e7eb;
	padding: 10px;
	text-align: left;
}

.mll-table th {
	background: #f8fafc;
	color: #475569;
	font-size: 12px;
	text-transform: uppercase;
}

.mll-notice,
.mll-badge {
	background: #eff6ff;
	border: 1px solid #bfdbfe;
	border-radius: 6px;
	color: #1e40af;
	display: inline-block;
	font-weight: 700;
	margin-bottom: 16px;
	padding: 10px 12px;
}

@media (max-width: 760px) {
	.mll-pricing,
	.mll-status-grid {
		grid-template-columns: 1fr;
	}
}
