.elrapi-panel {
	background: #fff;
	border: 1px solid #e4e7ec;
	border-radius: 12px;
	box-shadow: 0 8px 24px rgba(16, 24, 40, .06);
	margin: 1.5rem auto;
	max-width: 980px;
	padding: 2rem;
}

.elrapi-panel h2,
.elrapi-panel h3 { color: #101828; }

.elrapi-form-grid {
	display: grid;
	gap: 1rem;
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.elrapi-field-full { grid-column: 1 / -1; }

.elrapi-panel label {
	color: #344054;
	display: block;
	font-weight: 600;
	margin-bottom: .35rem;
}

.elrapi-panel input[type="text"],
.elrapi-panel input[type="email"],
.elrapi-panel input[type="number"],
.elrapi-panel input[type="tel"],
.elrapi-panel select,
.elrapi-panel textarea {
	background: #fff;
	border: 1px solid #d0d5dd;
	border-radius: 7px;
	box-sizing: border-box;
	padding: .75rem;
	width: 100%;
}

.elrapi-panel textarea { min-height: 140px; }

.elrapi-button {
	background: #163a5f;
	border: 0;
	border-radius: 7px;
	color: #fff !important;
	cursor: pointer;
	display: inline-block;
	font-weight: 700;
	padding: .8rem 1.2rem;
	text-decoration: none !important;
}

.elrapi-button:hover { background: #0f2a45; }

.elrapi-notice {
	border-left: 4px solid #2e90fa;
	margin-bottom: 1rem;
	padding: .8rem 1rem;
}

.elrapi-notice-success { background: #ecfdf3; border-color: #12b76a; }
.elrapi-notice-error { background: #fef3f2; border-color: #f04438; }
.elrapi-notice-warning { background: #fffaeb; border-color: #f79009; }

.elrapi-steps {
	display: grid;
	gap: 1rem;
	grid-template-columns: repeat(5, minmax(0, 1fr));
}

.elrapi-step {
	background: #f8fafc;
	border-radius: 10px;
	padding: 1rem;
}

.elrapi-step span {
	align-items: center;
	background: #b9913f;
	border-radius: 999px;
	color: #fff;
	display: flex;
	font-weight: 800;
	height: 32px;
	justify-content: center;
	width: 32px;
}

.elrapi-table { border-collapse: collapse; width: 100%; }
.elrapi-table th, .elrapi-table td { border-bottom: 1px solid #eaecf0; padding: .75rem; text-align: left; }
.elrapi-status { font-weight: 700; text-transform: capitalize; }

@media (max-width: 760px) {
	.elrapi-form-grid,
	.elrapi-steps { grid-template-columns: 1fr; }
	.elrapi-panel { padding: 1.1rem; }
	.elrapi-table { display: block; overflow-x: auto; }
}

