
/* Admin Enhancements */
.admin-top { display: flex; align-items: center; justify-content: space-between; padding: 1rem 1.5rem; background: var(--surface); border-bottom: 1px solid var(--line); }
.admin-brand { display: flex; align-items: center; gap: .6rem; font-size: 1.1rem; }
.admin-logo { font-size: 1.5rem; }
.admin-user { display: flex; align-items: center; gap: 1rem; }
.admin-email { color: var(--muted); font-size: .9rem; }
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1rem; margin-bottom: 2rem; }
.stat { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 1.5rem; }
.stat h4 { color: var(--muted); font-size: .85rem; margin: 0 0 .5rem; text-transform: uppercase; letter-spacing: .05em; }
.stat-num { font-size: 2rem; font-weight: 700; margin: 0; color: var(--brand); }
.stat-sub { color: var(--muted); font-size: .85rem; margin: .3rem 0 0; }
.modal { position: fixed; inset: 0; background: rgba(0,0,0,.7); display: grid; place-items: center; z-index: 1000; padding: 1rem; }
.modal-card { background: var(--bg); border-radius: var(--r-lg); padding: 2rem; max-width: 600px; width: 100%; max-height: 90vh; overflow-y: auto; }
.modal-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.5rem; }
.modal-foot { display: flex; gap: .5rem; justify-content: flex-end; margin-top: 1.5rem; }
.field-err { color: var(--danger); font-size: .85rem; min-height: 1.2em; }
.btn-danger { background: var(--danger); color: #fff; }
.pill { display: inline-block; padding: .2em .6em; border-radius: var(--r-pill); font-size: .75rem; font-weight: 600; }
.pill-ok { background: var(--brand-soft); color: var(--brand); }
.pill-warn { background: var(--gold-soft); color: var(--gold); }
