/* Educational Consultancy plugin fallback styles. Prefixed to avoid theme collisions. */
.edc-form, .edc-dashboard, .edc-card, .edc-table { font-family: inherit; color: inherit; }
.edc-form { display: grid; gap: 14px; background: #fff; padding: 24px; border-radius: 14px; box-shadow: 0 8px 30px rgba(11,44,74,.06); }
.edc-form h3 { margin: 10px 0 0; font-size: 18px; }
.edc-form select { background: #fff; width: 100%; }
.edc-form label { display: grid; gap: 6px; font-weight: 600; font-size: 14px; }
.edc-form .edc-consent {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	font-weight: 500;
	line-height: 1.45;
}
.edc-form .edc-consent input[type="checkbox"] {
	width: 18px;
	height: 18px;
	min-width: 18px;
	margin: 2px 0 0;
	padding: 0;
	flex-shrink: 0;
	accent-color: #0B2C4A;
}
.edc-form input, .edc-form select, .edc-form textarea {
	padding: 10px 12px; border: 1px solid #d5dde6; border-radius: 8px; font: inherit;
}
.edc-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 12px; }
.edc-btn {
	display: inline-flex; align-items: center; justify-content: center;
	background: #C9A227; color: #0B2C4A; border: 0; border-radius: 999px;
	padding: 11px 18px; font-weight: 700; cursor: pointer;
}
.edc-dashboard { display: grid; grid-template-columns: 220px 1fr; gap: 24px; }
.edc-dash-nav ul { list-style: none; margin: 0; padding: 0; background: #fff; border-radius: 14px; overflow: hidden; }
.edc-dash-nav a { display: block; padding: 10px 14px; color: #0B2C4A; text-decoration: none; border-bottom: 1px solid #eef2f6; }
.edc-dash-main { background: #fff; padding: 24px; border-radius: 14px; }
.edc-stats-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 12px; margin: 16px 0 24px; }
.edc-stat { background: #F4F7FA; padding: 16px; border-radius: 12px; }
.edc-stat strong { display: block; font-size: 24px; color: #0B2C4A; }
.edc-cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 16px; }
.edc-card { background: #fff; border-radius: 14px; padding: 16px; box-shadow: 0 8px 30px rgba(11,44,74,.06); }
.edc-table { width: 100%; border-collapse: collapse; background: #fff; }
.edc-table th, .edc-table td { padding: 10px; border-bottom: 1px solid #eef2f6; text-align: left; }
.edc-empty { color: #5b6573; }
.edc-alert { background: #d8f3e8; padding: 10px 14px; border-radius: 8px; margin-bottom: 12px; }
.edc-alert-error { background: #fde2e1; }
.edc-badge { display: inline-block; padding: 2px 8px; border-radius: 999px; font-size: 12px; background: #eef2f6; }
@media (max-width: 720px) {
	.edc-dashboard { grid-template-columns: 1fr; }
}
