.londeo-admin-grid {
	display: grid;
	gap: 16px;
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.londeo-field {
	display: grid;
	gap: 6px;
}

.londeo-field span {
	font-weight: 700;
}

.londeo-field input,
.londeo-field textarea,
.londeo-field select {
	max-width: 100%;
	width: 100%;
}

.londeo-ok {
	color: #0f7b4f;
	font-weight: 700;
}

.londeo-warn {
	color: #a96300;
	font-weight: 700;
}

.londeo-admin-cards {
	display: grid;
	gap: 16px;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	margin-top: 20px;
}

.londeo-admin-card {
	background: #fff;
	border: 1px solid #dcdcde;
	border-radius: 6px;
	padding: 18px;
}

.londeo-product-specs table {
	border-collapse: collapse;
	width: 100%;
}

.londeo-product-specs th,
.londeo-product-specs td {
	border-bottom: 1px solid #dcdcde;
	padding: 12px;
	text-align: left;
	vertical-align: top;
}

.londeo-product-specs th {
	width: 32%;
}

@media (max-width: 900px) {
	.londeo-admin-grid,
	.londeo-admin-cards {
		grid-template-columns: 1fr;
	}
}
