/* ==========================================================
   dynamic.css — the ONLY styling added for the PHP/MySQL version.
   Everything else on the public site still comes from style.css / responsive.css (unchanged).
   ========================================================== */

/* Admin icon: sits at the right of the existing navbar, styled like the burger / nav links */
.nav-actions{display:flex;align-items:center;gap:12px}
.admin-link{width:44px;height:44px;flex:none;border-radius:50%;display:grid;place-items:center;border:1.5px solid rgba(23,42,70,.22);color:var(--navy);font-size:1.15rem;transition:background .3s,color .3s,border-color .3s,transform .4s var(--ease)}
.admin-link:hover{background:var(--navy);border-color:var(--navy);color:#fff;transform:translateY(-2px)}
body.dark-top .site-header:not(.scrolled) .admin-link{color:#fff;border-color:rgba(255,255,255,.45)}
body.dark-top .site-header:not(.scrolled) .admin-link:hover{background:#fff;border-color:#fff;color:var(--navy)}
body.menu-open .admin-link{color:#fff;border-color:rgba(255,255,255,.4)}
@media (max-width:480px){.nav-wrap{gap:10px}.admin-link{width:40px;height:40px}.burger{width:44px;height:44px}.burger span{left:12px;right:12px}.burger span:first-child{top:17px}.burger span:last-child{top:25px}body.menu-open .burger span:first-child,body.menu-open .burger span:last-child{top:21px}}

/* Form feedback for server-side errors */
.form-status.error{background:#fff1f3;border-left:3px solid #b3123f}
