/*
Theme Name: TDC App Shell
Theme URI: https://trafficdefencecertified.example
Author: Traffic Defence Certified
Author URI: https://trafficdefencecertified.example
Description: Minimal app-shell theme for Traffic Defence Certified portal and admin-style layouts.
Version: 0.1.1
License: GPLv2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: tdc-app-shell
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready
*/

:root{
  --tdc-bg:#f6f7fb;
  --tdc-card:#ffffff;
  --tdc-text:#111827;
  --tdc-muted:#6b7280;
  --tdc-border:#d8dbe6;
  --tdc-link:#2563eb;
}
body{
  margin:0;
  font-family: system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  background:var(--tdc-bg);
  color:var(--tdc-text);
}
a{ color:var(--tdc-link); text-decoration:none; }
a:hover{ text-decoration:underline; }
.tdc-wrap{ max-width: 980px; margin: 0 auto; padding: 24px; }
.tdc-card{
  background:var(--tdc-card);
  border-radius:14px;
  padding:18px;
  box-shadow:0 2px 12px rgba(0,0,0,.06);
}
.tdc-top{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:12px;
  margin-bottom:14px;
}
.tdc-muted{ color:var(--tdc-muted); font-size:13px; }
