/*
Theme Name: Edu Platform
Theme URI: https://example.com
Author: Converted for WordPress
Description: Multi-role EdTech platform theme (Student / Teacher / School / Super Admin) with quiz auto-grading, approval workflow, and analytics dashboards. Pairs with the "Edu Platform Backend" plugin, which provides the REST API this theme talks to.
Version: 1.0.0
Requires at least: 5.9
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: edu-platform-theme
*/

/* ---------- Base site styling (used on ordinary pages/posts, not the app screen) ---------- */
:root{
  --ep-primary:#4f46e5;
  --ep-primary-dark:#4338ca;
  --ep-bg:#f5f6fb;
  --ep-text:#1f2333;
  --ep-muted:#6b7280;
  --ep-border:#e3e5ef;
}
*{box-sizing:border-box;}
body{
  margin:0;
  font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Helvetica,Arial,sans-serif;
  background:var(--ep-bg);
  color:var(--ep-text);
  line-height:1.6;
}
a{color:var(--ep-primary);}
.site-header{
  display:flex;justify-content:space-between;align-items:center;
  background:#fff;padding:16px 24px;border-bottom:1px solid var(--ep-border);
}
.site-header .site-title{font-weight:700;font-size:1.2rem;color:var(--ep-primary);text-decoration:none;}
.site-header nav a{margin-left:16px;color:var(--ep-text);text-decoration:none;font-size:.9rem;}
.site-content{max-width:800px;margin:0 auto;padding:32px 24px;background:#fff;min-height:60vh;}
.site-footer{text-align:center;padding:20px;color:var(--ep-muted);font-size:.85rem;}
