/*
Theme Name: Extendable Child
Theme URI: https://example.com/
Description: Child theme for Extendable custom dashboard templates.
Author: Your Name
Author URI: https://example.com/
Template: extendable
Version: 1.0.0
Text Domain: extendable-child
*/

.platform-wrap {
	max-width: 1100px;
	margin: 0 auto;
}

.platform-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 20px;
	margin-top: 30px;
	margin-bottom: 20px;
}

.platform-card {
	background: #ffffff;
	border: 1px solid #e5e7eb;
	border-radius: 14px;
	padding: 24px;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}

.platform-card h1,
.platform-card h2 {
	margin-top: 0;
}

.platform-card input,
.platform-card button {
	width: 100%;
	padding: 12px;
	font-size: 16px;
	box-sizing: border-box;
	margin-top: 6px;
}

.platform-card button {
	cursor: pointer;
	border: none;
	border-radius: 8px;
	background: #111827;
	color: #ffffff;
	font-weight: 600;
}

.platform-success {
	color: #15803d;
	font-weight: 600;
}

.platform-error {
	color: #b91c1c;
	font-weight: 600;
}